黄学彪
2020-07-06 f23ad1b3f9f6193f35f72104d690b21dc67d5c1f
ZigbeeApp/Shared/Phone/UserCenter/HideOption/HideOptionMainForm.cs
@@ -126,36 +126,6 @@
                form.AddForm();
            };
#if Android
            row1 = new FrameRowControl(listView.rowSpace / 2);
            row1.UseClickStatu = false;
            listView.AddChidren(row1);
            row1.AddLeftCaption("GBS定位", 500);
            row1.AddBottomLine();
            var btnGbsSwitch = row1.AddMostRightSwitchIcon();
            string checkFile = System.IO.Path.Combine(Shared.IO.FileUtils.RootPath, Shared.Phone.UserCenter.DirNameResourse.OpenGbsFile);
            if (System.IO.File.Exists(checkFile) == true)
            {
                btnGbsSwitch.IsSelected = true;
            }
            btnGbsSwitch.ButtonClickEvent += (sender, e) =>
            {
                this.ShowMassage(ShowMsgType.Confirm, "注意:开启或者关闭此功能会重启App", () =>
                {
                    btnGbsSwitch.IsSelected = !btnGbsSwitch.IsSelected;
                    if (btnGbsSwitch.IsSelected == true)
                    {
                        var file = System.IO.File.Create(checkFile);
                        file.Close();
                    }
                    else
                    {
                        System.IO.File.Delete(checkFile);
                    }
                    HDLUtils.RestartApp();
                });
            };
#endif
            row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
            row1.AddLeftCaption("设备缓存变量", 500);
@@ -167,6 +137,35 @@
                form.AddForm();
            };
            row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
            row1.AddLeftCaption("收集发送和接收的数据", 600);
            row1.AddBottomLine();
            var btnSwitchLog = row1.AddMostRightSwitchIcon();
            btnSwitchLog.ButtonClickEvent += (sender, e) =>
            {
                if (btnSwitchLog.IsSelected == false)
                {
                    this.ShowMassage(ShowMsgType.Confirm, "是否打开记录发送及接收数据的记录?", () =>
                    {
                        btnSwitchLog.IsSelected = true;
                        HdlFileLogic.Current.DeleteFile(DirNameResourse.SendAndReceveDataLog);
                        UserCenterResourse.HideOption.WriteSendAndReceveDataToFile = 1;
                    });
                }
                else
                {
                    btnSwitchLog.IsSelected = false;
                    var txtvalue = HdlFileLogic.Current.ReadFileTextContent(DirNameResourse.SendAndReceveDataLog);
                    if (txtvalue != null)
                    {
                        var form = new HideOptionFileContentForm();
                        form.AddForm(string.Empty);
                        form.SetTextContent(txtvalue);
                    }
                }
            };
            row1 = new FrameRowControl(listView.rowSpace / 2);
            listView.AddChidren(row1);
@@ -176,9 +175,9 @@
            {
                this.ShowMassage(ShowMsgType.Confirm, "是否上传Log文件", () =>
                {
                    HdlThreadLogic.Current.RunThread(async () =>
                    HdlThreadLogic.Current.RunThread(() =>
                    {
                        await HdlBackupLogic.Current.UpLoadLogBackup();
                        HdlBackupLogic.Current.UpLoadLogBackup();
                    });
                });
            };
@@ -285,6 +284,8 @@
        {
            Shared.Phone.UserCenter.UserCenterResourse.DicReceiveGatewayTest = null;
            UserCenterResourse.HideOption.CheckCanReceiveGateway = 0;
            UserCenterResourse.HideOption.WriteSendAndReceveDataToFile = 1;
            base.CloseFormBefore();
        }