From c7df85937f73fb347ee0b19e9c052d2d00a6df6c Mon Sep 17 00:00:00 2001 From: 黄学彪 <hxb@hdlchina.com.cn> Date: 星期五, 18 九月 2020 13:58:19 +0800 Subject: [PATCH] 新版本 --- ZigbeeApp/Shared/Phone/Category/CategoryMainForm.cs | 40 ++++++++++++++++++++++++++++------------ 1 files changed, 28 insertions(+), 12 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/Category/CategoryMainForm.cs b/ZigbeeApp/Shared/Phone/Category/CategoryMainForm.cs index b09d0bf..0051a5f 100755 --- a/ZigbeeApp/Shared/Phone/Category/CategoryMainForm.cs +++ b/ZigbeeApp/Shared/Phone/Category/CategoryMainForm.cs @@ -91,7 +91,7 @@ topFrameLayout.BackgroundColor = ZigbeeColor.Current.GXCGrayBackgroundColor; this.AddChidren(topFrameLayout); //鏍囬鍒嗙被 - var btnTitle = new NormalViewControl(300, 95, true); + var btnTitle = new NormalViewControl(400, 95, true); btnTitle.X = ControlCommonResourse.XXLeft; btnTitle.Gravity = Gravity.CenterVertical; btnTitle.TextID = R.MyInternationalizationString.Category; @@ -396,7 +396,7 @@ frameDeviceBack.AddChidren(listDeviceView); //涓婁竴娆¢�夋嫨鐨勮彍鍗� - MainPage.Controls.DeviceFunctionUnallocatedControl oldSelectContr = null; + MainPage.Controls.DeviceFunctionMenuControl oldSelectContr = null; DeviceRowInfo nowSelectDeviceInfo = null; foreach (string strText in dicGroupDevice.Keys) { @@ -408,9 +408,9 @@ HorizontalView.AddChidren(devieFrame); //鑿滃崟鍥剧墖鎺т欢 - var deviceObjContr = new MainPage.Controls.DeviceFunctionUnallocatedControl(); + var deviceObjContr = new MainPage.Controls.DeviceFunctionMenuControl(); devieFrame.AddChidren(deviceObjContr); - deviceObjContr.InitControl(strText, rowInfo.IconPath, rowInfo.IconPathSelected, rowInfo.listDeviceKeys); + deviceObjContr.InitControl(strText, rowInfo.IconPath, rowInfo.IconPathSelected); deviceObjContr.ButtonClickEvent += (sender, e) => { //閫夋嫨鐨勬槸鍚屼竴涓笢瑗跨殑璇�,涓嶅鐞� @@ -582,15 +582,30 @@ } HdlThreadLogic.Current.RunThread(() => { - for (int i = 0; i < listContr.Count; i++) + while (listView.Parent != null) { - if (listView.Parent == null) + bool hadSend = false; + for (int i = 0; i < listContr.Count; i++) { - return; + if (listView.Parent == null) + { + return; + } + //濡傛灉杩樻病鏈夋帴鏀跺埌鏁版嵁,鍒欏啀娆″彂閫� + if (listContr[i].ReceiveResponeResultStatu() == false) + { + //鍙戦�佽幏鍙栫姸鎬佺殑鍛戒护 + listContr[i].SendStatuComand(); + hadSend = true; + System.Threading.Thread.Sleep(200); + } } - System.Threading.Thread.Sleep(200); - //鍙戦�佽幏鍙栫姸鎬佺殑鍛戒护 - listContr[i].SendStatuComand(); + if (hadSend == false) + { + //濡傛灉宸茬粡鍏ㄩ儴鍥炶矾閮芥帴鏀朵簡缃戝叧鍥炲,鍒欎笉鍐嶄簩娆″彂閫� + break; + } + System.Threading.Thread.Sleep(2000); } }, ShowErrorMode.NO); @@ -913,7 +928,8 @@ //璁惧鐘舵�佸繀椤诲埛鏂� string statuText = HdlDeviceOtherLogic.Current.GetDeviceStatu(contr.device); contr.SetDeviceStatuText(statuText); - + //浼犳劅鍣ㄥ垏鎹负鐏拌壊鐘舵�� + contr.SwitchRowStatuAppeal(false); }, ShowErrorMode.NO); } } @@ -960,7 +976,7 @@ string path1 = string.Empty; string path2 = string.Empty; //鑾峰彇鍥剧墖 - LocalDevice.Current.GetDeviceFunctionTypeMenuIcon(typeInfo.ConcreteType, ref path1, ref path2); + LocalDevice.Current.GetDeviceFunctionTypeMenuIcon(typeInfo, ref path1, ref path2); dic[typeInfo.BeloneText].IconPath = path1; dic[typeInfo.BeloneText].IconPathSelected = path2; dic[typeInfo.BeloneText].Text = typeInfo.BeloneText; -- Gitblit v1.8.0