From a5b3c4bae726ef6770d4bfcbf2f4b50a37ed4a15 Mon Sep 17 00:00:00 2001 From: 黄学彪 <hxb@hdlchina.com.cn> Date: 星期五, 06 三月 2020 15:31:36 +0800 Subject: [PATCH] 删除了郭雪城的 DeviceUi 这个类 --- ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionMainForm.cs | 89 ++++++++++++++++++++++++++++++++++++-------- 1 files changed, 72 insertions(+), 17 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionMainForm.cs b/ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionMainForm.cs index 5daaef9..8734356 100755 --- a/ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionMainForm.cs +++ b/ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionMainForm.cs @@ -1,6 +1,7 @@ 锘縰sing System; using System.Collections.Generic; using System.Text; +using ZigBee.Device; namespace Shared.Phone.UserCenter.HideOption { @@ -88,7 +89,7 @@ row1 = new FrameRowControl(listView.rowSpace / 2); listView.AddChidren(row1); row1.UseClickStatu = false; - row1.AddLeftCaption("骞挎挱鎼滃埌鐨勭綉鍏�", 400); + row1.AddLeftCaption("缂撳瓨涓殑缃戝叧", 400); if (count > 0) { row1.UseClickStatu = true; @@ -102,6 +103,9 @@ row1.AddMostRightView(count + "涓�", 400); row1.AddBottomLine(); + //妫�娴嬭兘鍚﹀箍鎾緱鍒扮綉鍏� + this.AddCheckReceviceGatewayRow(); + row1 = new FrameRowControl(listView.rowSpace / 2); listView.AddChidren(row1); row1.AddLeftCaption("娓呴櫎缂撳瓨鏂囦欢", 500); @@ -109,22 +113,8 @@ row1.AddBottomLine(); row1.ButtonClickEvent += (sender, e) => { - this.ShowMassage(ShowMsgType.Confirm, "鏄惁娓呴櫎缂撳瓨鏂囦欢", () => - { - var myPath = UserCenterLogic.CombinePath(DirNameResourse.LocalMemoryDirectory); - try - { - System.IO.Directory.Delete(myPath, true); - System.IO.Directory.CreateDirectory(myPath); - this.ShowMassage(ShowMsgType.Tip, "娓呴櫎缂撳瓨鏂囦欢瀹屾垚,璇烽噸鏂扮櫥闄�"); - UserCenterLogic.ReLoginAgain(UserCenterResourse.UserInfo.Account); - } - catch (Exception ex) - { - this.ShowMassage(ShowMsgType.Error, "娓呴櫎缂撳瓨鏂囦欢寮傚父"); - HdlLogLogic.Current.WriteLog(ex, "娓呴櫎缂撳瓨鏂囦欢寮傚父"); - } - }); + var form = new HideOptionDirectoryListForm(); + form.AddForm(); }; #if Android @@ -213,6 +203,71 @@ return row1; } + /// <summary> + /// 妫�娴嬭兘鍚﹀箍鎾緱鍒扮綉鍏� + /// </summary> + private void AddCheckReceviceGatewayRow() + { + var row1 = new FrameRowControl(listView.rowSpace / 2); + listView.AddChidren(row1); + row1.AddLeftCaption("妫�娴嬭兘鍚﹀箍鎾緱鍒扮綉鍏�", 700); + row1.AddRightArrow(); + row1.AddBottomLine(); + var btnCount = row1.AddMostRightView("", 400); + row1.ButtonClickEvent += (sender, e) => + { + int waiteCount = 5; + this.ShowMassage(ShowMsgType.Confirm, "璇ユ搷浣滃皢绛夊緟" + waiteCount + "绉�,鏄惁缁х画锛�", () => + { + Shared.Phone.UserCenter.UserCenterResourse.DicReceiveGatewayTest = new Dictionary<string, ZbGateway>(); + UserCenterResourse.HideOption.CheckCanReceiveGateway = 1; + HdlThreadLogic.Current.RunThread(() => + { + while (waiteCount > 0) + { + HdlThreadLogic.Current.RunMain(() => + { + btnCount.Text = "璇风瓑寰�" + waiteCount + "绉�"; + }); + System.Threading.Thread.Sleep(1000); + waiteCount--; + } + HdlThreadLogic.Current.RunMain(() => + { + btnCount.Text = string.Empty; + }); + //缁撴潫 + UserCenterResourse.HideOption.CheckCanReceiveGateway = 0; + if (Shared.Phone.UserCenter.UserCenterResourse.DicReceiveGatewayTest.Count == 0) + { + this.ShowMassage(ShowMsgType.Normal, "鎶辨瓑,娌℃湁骞挎挱鍒颁换浣曠綉鍏�"); + return; + } + HdlThreadLogic.Current.RunMain(() => + { + var form = new HideOptionGatewayListForm(); + form.AddForm(3); + }); + }); + }); + }; + } + + #endregion + + #region 鈻� 鐣岄潰鍏抽棴___________________________ + + /// <summary> + /// 鐣岄潰鍏抽棴 + /// </summary> + public override void CloseFormBefore() + { + Shared.Phone.UserCenter.UserCenterResourse.DicReceiveGatewayTest = null; + UserCenterResourse.HideOption.CheckCanReceiveGateway = 1; + + base.CloseFormBefore(); + } + #endregion } } -- Gitblit v1.8.0