From 355bf4219bcd33f2178ed3b1aa54e0af71905fdf Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期五, 19 三月 2021 09:44:27 +0800
Subject: [PATCH] Merge branch 'WJC' into temp-wxr

---
 HDL_ON/UI/UI2/FuntionControlView/Video/View/FrameLayout50.cs |   46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 46 insertions(+), 0 deletions(-)

diff --git a/HDL_ON/UI/UI2/FuntionControlView/Video/View/FrameLayout50.cs b/HDL_ON/UI/UI2/FuntionControlView/Video/View/FrameLayout50.cs
new file mode 100644
index 0000000..eea1f20
--- /dev/null
+++ b/HDL_ON/UI/UI2/FuntionControlView/Video/View/FrameLayout50.cs
@@ -0,0 +1,46 @@
+锘縰sing System;
+using HDL_ON.UI.UI2.Intelligence.Automation.LogicView;
+using Shared;
+namespace HDL_ON.UI.UI2.FuntionControlView.Video.View
+{
+    public class FrameLayout50
+    {
+        /// <summary>
+        /// 涓绘帶浠禫iew
+        /// </summary>
+        public FrameLayout frameLayout = new FrameLayout
+        {
+            Height = Application.GetRealHeight(50),
+            // BackgroundColor = CSS.CSS_Color.view,
+        };
+        /// <summary>
+        /// 鏂囨湰鎻忚堪
+        /// </summary>
+        public Button btnText = new Button
+        {
+            Y = Application.GetRealHeight(24),
+            Width = Application.GetRealWidth(200),
+            Height = Application.GetRealHeight(22),
+            TextColor = CSS.CSS_Color.textColor,
+            TextSize = TextSize.text16,
+            TextAlignment = TextAlignment.CenterLeft,
+            IsBold = true,
+            Text= "2020骞�",
+        };
+
+        public Button btnClick = new Button
+        {
+            Height = Application.GetRealHeight(50),
+        };
+        /// <summary>
+        /// View鐨勬柟娉�
+        /// </summary>
+        /// <returns></returns>
+        public FrameLayout FLayoutView()
+        {
+            frameLayout.AddChidren(btnText);
+            frameLayout.AddChidren(btnClick);
+            return frameLayout;
+        }
+    }
+}

--
Gitblit v1.8.0