| | |
| | | using System;
|
| | | using System.Collections.Generic;
|
| | | using System.Text;
|
| | | using ZigBee.Device;
|
| | |
|
| | | namespace Shared.Phone.UserCenter.HideOption
|
| | | {
|
| | |
| | | row1 = new FrameRowControl(listView.rowSpace / 2);
|
| | | listView.AddChidren(row1);
|
| | | row1.UseClickStatu = false;
|
| | | row1.AddLeftCaption("广播搜到的网关", 400);
|
| | | row1.AddLeftCaption("缓存中的网关", 400);
|
| | | if (count > 0)
|
| | | {
|
| | | row1.UseClickStatu = true;
|
| | |
| | | row1.AddMostRightView(count + "个", 400);
|
| | | row1.AddBottomLine();
|
| | |
|
| | | //检测能否广播得到网关
|
| | | this.AddCheckReceviceGatewayRow();
|
| | |
|
| | | row1 = new FrameRowControl(listView.rowSpace / 2);
|
| | | listView.AddChidren(row1);
|
| | | row1.AddLeftCaption("清除缓存文件", 500);
|
| | |
| | | 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
|
| | |
| | | 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
|
| | | }
|
| | | }
|