From c1de48884fa145a16a0f8bcee93274dcfaa0ff82 Mon Sep 17 00:00:00 2001 From: xm <1271024303@qq.com> Date: 星期四, 07 五月 2020 10:40:28 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/dev-tzy' into dev-2020xm --- 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