From e1c35ade69cb253e8780dbedb4d244530fc88725 Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期一, 12 十二月 2022 09:59:55 +0800 Subject: [PATCH] 组名搜索 --- SmartHome/UI/SimpleControl/Phone/System/RemoteOnePort.cs | 49 +++++++++++++++++++++++++++++++------------------ 1 files changed, 31 insertions(+), 18 deletions(-) diff --git a/SmartHome/UI/SimpleControl/Phone/System/RemoteOnePort.cs b/SmartHome/UI/SimpleControl/Phone/System/RemoteOnePort.cs index 2e60e93..6258a3b 100644 --- a/SmartHome/UI/SimpleControl/Phone/System/RemoteOnePort.cs +++ b/SmartHome/UI/SimpleControl/Phone/System/RemoteOnePort.cs @@ -8,7 +8,7 @@ { #region 鏂囨湰 string text_Title = "杩滅▼杩炴帴"; - string text_userName = "缁勫悕"; + string text_userName = "鐢ㄦ埛鍚�"; string text_projectName ="宸ョ▼鍚�"; string text_password = "瀵嗙爜"; string text_entry_userName_tip = "璇疯緭鍏ョ粍鍚嶃��"; @@ -32,7 +32,7 @@ /// <summary> /// 鏈煡鐗堟湰 /// </summary> - string text_UnknownVersion = "鏈煡鐗堟湰"; + string text_UnknownVersion = "鍏朵粬鐗堟湰"; /// <summary> /// 璇诲彇澶辫触 /// </summary> @@ -40,6 +40,12 @@ string txt_breakLink = "鏂紑杩炴帴"; string txt_connectionSucceeded = "杩炴帴鎴愬姛"; + + + + string userName = ""; + string projectName = ""; + string password = ""; #endregion @@ -57,12 +63,16 @@ base.RemoveFromParent (); } - public RemoteOnePort () + public RemoteOnePort (string userNameOut, string projectNameOut) { + userName = userNameOut; + projectName = projectNameOut; + CommonPage.IsRemote = false; + if(Language.CurrentLanguage!= "Chinese") { text_Title = "Remote connection"; - text_userName = "Group name"; - text_projectName = "project name"; + text_userName = "User name"; + text_projectName = "Project name"; text_password = "Password"; text_entry_userName_tip = "Please enter the group name."; text_entry_projectName_tip = "Please enter the project name."; @@ -70,7 +80,7 @@ text_Upgraded = "Upgraded"; text_Upgrading = "Upgrading"; text_UpgradeFailed = "Upgrade failed"; - text_UnknownVersion = "Unknown version"; + text_UnknownVersion = "Other version"; text_readFailure = "Read failure"; text_back = "Back"; text_link = "Link"; @@ -128,9 +138,6 @@ void initContentView () { var remoteClient = new SystemRemote (); - string userName = ""; - string projectName = ""; - string password = ""; contentView = new VerticalScrolViewLayout () { Y = Application.GetRealHeight (126), @@ -161,10 +168,12 @@ btnUserNameTitle.Width = btnUserNameTitle.GetTextWidth () + Application.GetRealWidth (30); userNameView.AddChidren (btnUserNameTitle); - var tvUserName = new EditText () { + var tvUserName = new Button () { Width = Application.GetRealWidth (400), X = btnUserNameTitle.Right, TextColor = SkinStyle.Current.TextColor1, + TextAlignment = TextAlignment.CenterLeft, + Text = userName, }; userNameView.AddChidren (tvUserName); @@ -192,10 +201,12 @@ btnProjuectNameTitle.Width = btnProjuectNameTitle.GetTextWidth () + Application.GetRealWidth (30); projectNameView.AddChidren (btnProjuectNameTitle); - var tvProjectName = new EditText () { + var tvProjectName = new Button () { Width = Application.GetRealWidth (400), X = btnProjuectNameTitle.Right, TextColor = SkinStyle.Current.TextColor1, + TextAlignment = TextAlignment.CenterLeft, + Text = projectName, }; projectNameView.AddChidren (tvProjectName); @@ -226,6 +237,7 @@ Width = Application.GetRealWidth (400), X = btnPasswordTitle.Right, TextColor = SkinStyle.Current.TextColor1, + Foucs = true, }; passwrodView.AddChidren (tvPassword); @@ -259,9 +271,9 @@ contentView.AddChidren (btnOption); #if DEBUG - userName = tvUserName.Text = "www"; - projectName = tvProjectName.Text = "www"; - password = tvPassword.Text = "wwwwww"; + //userName = tvUserName.Text = "gs"; + //projectName = tvProjectName.Text = "gs"; + password = tvPassword.Text = "666666"; #endif @@ -503,6 +515,11 @@ serverIPBytes [5 + 6] = Convert.ToByte (9999 % 256); } + + +#if DEBUG + return; +#endif var mobytes = Control.ControlBytesSendHasReturn (Command.SetGateWayModelInternetInfo, common.SubnetID, common.DeviceID, serverIPBytes); if (mobytes == null || mobytes [0] == 0xF5) { Application.RunOnMainThread (() => { @@ -531,9 +548,5 @@ } }) { IsBackground = true }.Start (); } - - - - } } -- Gitblit v1.8.0