gxc
2019-10-18 d569f44a62fa915d4f01a80c21e617f676b6c5ea
ZigbeeApp/Shared/Phone/UserCenter/HdlBackup/HdlGatewayListBackUpForm.cs
@@ -62,7 +62,7 @@
            //设置接受在线状态推送
            this.AddGatewayOnlinePush();
            new System.Threading.Thread(() =>
            HdlThreadLogic.Current.RunThread(() =>
            {
                List<ZbGateway> listway = HdlGatewayLogic.Current.GetAllLocalGateway();
                if (listway.Count == 0)
@@ -83,8 +83,7 @@
                    //开启网关在线监测的线程
                    this.StartGatewayOnlieCheckThread(listway);
                });
            })
            { IsBackground = true }.Start();
            });
        }
        #endregion
@@ -157,7 +156,7 @@
        /// <param name="listway"></param>
        private void StartGatewayOnlieCheckThread(List<ZbGateway> listway)
        {
            new System.Threading.Thread(() =>
            HdlThreadLogic.Current.RunThread(() =>
            {
                System.Threading.Thread.Sleep(300);
                //刷新网关在线状态
@@ -173,8 +172,7 @@
                }
                //网关新版本检测
                this.CheckGatewayNewVersion(listway);
            })
            { IsBackground = true }.Start();
            });
        }
        /// <summary>