From 9a4b76398009cf76c508d61f7e48fb6f5cb7ac2d Mon Sep 17 00:00:00 2001
From: xm <1271024303@qq.com>
Date: 星期二, 21 七月 2020 09:46:53 +0800
Subject: [PATCH] 请合并最新多功能面板代码

---
 ZigbeeApp/Shared/Phone/Device/Logic/LogicView/SaveView.cs |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)

diff --git a/ZigbeeApp/Shared/Phone/Device/Logic/LogicView/SaveView.cs b/ZigbeeApp/Shared/Phone/Device/Logic/LogicView/SaveView.cs
new file mode 100755
index 0000000..3eb3649
--- /dev/null
+++ b/ZigbeeApp/Shared/Phone/Device/Logic/LogicView/SaveView.cs
@@ -0,0 +1,36 @@
+锘縰sing System;
+using Shared.Common;
+using Shared.R;
+
+namespace Shared.Phone.Device.Logic.LogicView
+{
+    public class SaveView
+    {
+        public FrameLayout frameLayout = new FrameLayout
+        {
+            Height = Application.GetRealHeight(260),
+            BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor,
+        };
+        public Button saveBtn = new Button
+        {
+            X = Application.GetRealWidth(85),
+            Height = Application.GetRealHeight(130),
+            Width = Application.GetRealWidth(910),
+            Radius = (uint)Application.GetRealHeight(60),
+            BackgroundColor = ZigbeeColor.Current.LogicBtnSaveBackgroundColor,
+            TextID = MyInternationalizationString.Save,
+            TextColor = ZigbeeColor.Current.LogicBtnSaveTextColor,
+            TextSize = 16,
+        };
+        public Button clickviewBtn = new Button
+        {
+            Height = Application.GetRealHeight(260),
+        };
+        public FrameLayout Show()
+        {
+            frameLayout.AddChidren(saveBtn);
+            frameLayout.AddChidren(clickviewBtn);
+            return frameLayout;
+        }
+    }
+}

--
Gitblit v1.8.0