From 8b4d79ca03495e522a1953e04ca17527f33c853a Mon Sep 17 00:00:00 2001
From: 黄学彪 <hxb@hdlchina.com.cn>
Date: 星期一, 28 十月 2019 13:22:17 +0800
Subject: [PATCH] 合并完成代码

---
 ZigbeeApp/Shared/Phone/UserCenter/Gateway/Manage/GatewayListForm.cs |   48 +++++++++++++++++++++---------------------------
 1 files changed, 21 insertions(+), 27 deletions(-)

diff --git a/ZigbeeApp/Shared/Phone/UserCenter/Gateway/Manage/GatewayListForm.cs b/ZigbeeApp/Shared/Phone/UserCenter/Gateway/Manage/GatewayListForm.cs
index 8a6a8e7..05a06bb 100755
--- a/ZigbeeApp/Shared/Phone/UserCenter/Gateway/Manage/GatewayListForm.cs
+++ b/ZigbeeApp/Shared/Phone/UserCenter/Gateway/Manage/GatewayListForm.cs
@@ -88,19 +88,7 @@
             if (listway.Count == 0)
             {
                 //杩樻病鏈夌粦瀹氱綉鍏冲摝
-                var btnPic = new PicViewControl(683, 392);
-                btnPic.UnSelectedImagePath = "Item/NoFunction.png";
-                btnPic.Y = (int)(bodyFrameLayout.Height * 0.382) - Application.GetRealHeight(392 / 2);
-                btnPic.Gravity = Gravity.CenterHorizontal;
-                bodyFrameLayout.AddChidren(btnPic);
-
-                var btnView = new NormalViewControl(bodyFrameLayout.Width, Application.GetRealHeight(50), false);
-                btnView.Y = btnPic.Bottom + Application.GetRealHeight(32);
-                btnView.TextID = R.MyInternationalizationString.uHadNotBindGatewayMsg;
-                btnView.TextAlignment = TextAlignment.Center;
-                btnView.TextSize = 12;
-                btnView.TextColor = UserCenterColor.Current.TextGrayColor1;
-                bodyFrameLayout.AddChidren(btnView);
+                this.ShowNotDataImage(bodyFrameLayout, Language.StringByID(R.MyInternationalizationString.uHadNotBindGatewayMsg));
                 return;
             }
 
@@ -177,8 +165,11 @@
                 }
                 this.ShowMassage(ShowMsgType.Confirm, msg, () =>
                 {
-                    //鎵ц鍒囨崲缃戝叧鎿嶄綔
-                    this.DoSwitchGateway(strWayId);
+                    HdlThreadLogic.Current.RunThread(() =>
+                    {
+                        //鎵ц鍒囨崲缃戝叧鎿嶄綔
+                        this.DoSwitchGateway(strWayId);
+                    });
                 });
             };
 
@@ -278,19 +269,22 @@
             //濡傛灉閫夋嫨浜嗗埛鏂扮殑缃戝叧锛屽垯涓嶅叧闂鐞嗙晫闈�
             this.closeDeviceManagForm = false;
 
-            if (UserCenterResourse.DicActionForm.ContainsKey("DeviceListMainForm") == false)
+            HdlThreadLogic.Current.RunMain(() =>
             {
-                //鍒锋柊涓荤敾闈�
-                var form = new Device.DeviceListMainForm();
-                this.AddFromAndRemoveNowForm(form);
-            }
-            else
-            {
-                //鍏抽棴鐣岄潰
-                this.CloseForm();
-                //鍒锋柊涓荤敾闈�(涓嶉噸鏂拌幏鍙栬澶囩姸鎬�)
-                this.LoadFormMethodByName("DeviceListMainForm", "InitMiddleFrame", false);
-            }
+                if (UserCenterResourse.DicActionForm.ContainsKey("DeviceListMainForm") == false)
+                {
+                    //鍒锋柊涓荤敾闈�
+                    var form = new Device.DeviceListMainForm();
+                    this.AddFromAndRemoveNowForm(form);
+                }
+                else
+                {
+                    //鍏抽棴鐣岄潰
+                    this.CloseForm();
+                    //鍒锋柊涓荤敾闈�(涓嶉噸鏂拌幏鍙栬澶囩姸鎬�)
+                    this.LoadFormMethodByName("DeviceListMainForm", "InitMiddleFrame", false);
+                }
+            });
         }
 
         #endregion

--
Gitblit v1.8.0