gxc
2019-11-07 a4924de3136289d10cabbf2f61a228387d44ded7
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>