From 25429f085093d89d543a0b90e30d0d62d1b7dac9 Mon Sep 17 00:00:00 2001
From: hxb <hxb@hdlchina.com.cn>
Date: 星期二, 30 八月 2022 09:37:38 +0800
Subject: [PATCH] 合并了IOS的代码

---
 ZigbeeApp/Shared/Phone/Device/Logic/TemplatePage.cs |   17 ++++++++++-------
 1 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/ZigbeeApp/Shared/Phone/Device/Logic/TemplatePage.cs b/ZigbeeApp/Shared/Phone/Device/Logic/TemplatePage.cs
old mode 100755
new mode 100644
index 2d5b82d..869ac68
--- a/ZigbeeApp/Shared/Phone/Device/Logic/TemplatePage.cs
+++ b/ZigbeeApp/Shared/Phone/Device/Logic/TemplatePage.cs
@@ -61,7 +61,7 @@
             var iconBtn = new Button
             {
                 Width = Application.GetRealWidth(936),
-                Height = Application.GetRealHeight(436),
+                Height = Application.GetRealWidth(436),
                 X = Application.GetRealWidth(72),
                 Y = Application.GetRealHeight(30),
                 UnSelectedImagePath = $"ZigeeLogic/logicbj{s}.png",
@@ -270,21 +270,22 @@
                             }
                             break;
                     }
-                 
+
                     ///缂栬緫
+                    selecteddevice.edit.Tag = i.ToString();
                     selecteddevice.edit.MouseUpEventHandler += (sender, e) =>
                     {
                         var deviceinof = Method.GetCommonDevice(conditions["MacAddr"], conditions["Epoint"]);
                         var flMain = new FrameLayout { BackgroundColor = ZigbeeColor.Current.LogicViewBackgroundColor };
                         this.AddChidren(flMain);
-                        CurrentDeviceState.CurrentDeviceView(flMain, deviceinof, true, "condition_mould");
+                        CurrentDeviceState.CurrentDeviceView(flMain, deviceinof, true, "condition_mould", int.Parse(selecteddevice.edit.Tag.ToString()));
 
                     };
                     ///鍒犻櫎鎺т欢
                     selecteddevice.del.MouseUpEventHandler += (sender, e) =>
                     {
 
-                        var alert = new UserCenter.ShowMsgControl(UserCenter.ShowMsgType.Confirm,
+                        var alert = new UserCenter.ShowMsgControl(ShowMsgType.Confirm,
                    Language.StringByID(MyInternationalizationString.doyouwanttodelete),
                    Language.StringByID(MyInternationalizationString.confrim));
                         alert.Show();
@@ -403,18 +404,20 @@
                             break;
                     }
                     ///缂栬緫
+
+                    actiondevice.edit.Tag = i;
                     actiondevice.edit.MouseUpEventHandler += (sender, e) => {
                         var flMain = new FrameLayout { BackgroundColor = ZigbeeColor.Current.LogicViewBackgroundColor };
                         this.AddChidren(flMain);
                         var deviceinof = Method.GetCommonDevice(actions["DeviceAddr"].ToString(), actions["Epoint"].ToString());
-                        CurrentDeviceState.CurrentDeviceView(flMain, deviceinof, true, "action_mould");
+                        CurrentDeviceState.CurrentDeviceView(flMain, deviceinof, true, "action_mould",int.Parse(actiondevice.edit.Tag.ToString()));
                     };
                     ///鍒犻櫎鎺т欢
                     actiondevice.del.MouseUpEventHandler += (sender, e) =>
                     {
 
 
-                        var alert = new UserCenter.ShowMsgControl(UserCenter.ShowMsgType.Confirm,
+                        var alert = new UserCenter.ShowMsgControl(ShowMsgType.Confirm,
                      Language.StringByID(MyInternationalizationString.doyouwanttodelete),
                      Language.StringByID(MyInternationalizationString.confrim));
                         alert.Show();
@@ -469,7 +472,7 @@
                 var cycle = new Cycle(() => { Method.UpdateWeek(weekBtn, Common.Logic.CurrentLogic); });
                 UserView.HomePage.Instance.AddChidren(cycle);
                 UserView.HomePage.Instance.PageIndex += 1;
-                cycle.Show();
+                cycle.Show(LogicView.IfString._Logic,false);
 
                 //var cyclicCycle = new CyclicCycle(() => { UpdateWeek(btnweektext); });
                 //UserView.HomePage.Instance.AddChidren(cyclicCycle);

--
Gitblit v1.8.0