From 42fad29b1e280b512452f5552d1e9ce98474252e Mon Sep 17 00:00:00 2001
From: JLChen <551775569@qq.com>
Date: 星期一, 17 五月 2021 09:40:14 +0800
Subject: [PATCH] 2021-05-17 1.在阿廖分支基础上增加iOS乐橙可视对讲功能,目前呼叫还有一点问题,偶尔会闪退,目前还没定位到原因

---
 HDL_ON/UI/UI2/3-Intelligence/Automation/LogicView/FunAllAreaView.cs |   84 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 84 insertions(+), 0 deletions(-)

diff --git a/HDL_ON/UI/UI2/3-Intelligence/Automation/LogicView/FunAllAreaView.cs b/HDL_ON/UI/UI2/3-Intelligence/Automation/LogicView/FunAllAreaView.cs
new file mode 100644
index 0000000..9f803da
--- /dev/null
+++ b/HDL_ON/UI/UI2/3-Intelligence/Automation/LogicView/FunAllAreaView.cs
@@ -0,0 +1,84 @@
+锘縰sing System;
+using Shared;
+namespace HDL_ON.UI.UI2.Intelligence.Automation.LogicView
+{
+    public class FunAllAreaView
+    {
+        /// <summary>
+        /// 涓绘帶浠禫iew
+        /// </summary>
+        public FrameLayout frameLayout = new FrameLayout
+        {
+            Height = Application.GetRealHeight(53),
+            BackgroundColor = CSS.CSS_Color.view,
+        };
+        /// <summary>
+        /// 绗竴涓笅鎷夊浘鏍�
+        /// </summary>
+        public Button btnIcon1 = new Button
+        {
+            Width = Application.GetRealWidth(16),
+            Height = Application.GetRealWidth(16),
+            Y = Application.GetRealHeight(19),
+            X = Application.GetRealWidth(TextSize.left16),
+            UnSelectedImagePath = "LogicIcon/down.png",
+
+        };
+        /// <summary>
+        /// 绗竴涓枃鏈弿杩�
+        /// </summary>
+        public Button btnText1 = new Button
+        {
+            TextSize = TextSize.text12,
+            Width = Application.GetRealWidth(70),
+            Height = Application.GetRealHeight(17),
+            TextColor = CSS.CSS_Color.textColor,
+            Y=Application.GetRealHeight(18),
+            X = Application.GetRealWidth(34),
+            TextAlignment = TextAlignment.CenterLeft,
+            TextID=StringId.allAreas,
+            
+        };
+
+        /// <summary>
+        /// 绗簩涓笅鎷夊浘鏍�
+        /// </summary>
+        public Button btnIcon2 = new Button
+        {
+            Width = Application.GetRealWidth(16),
+            Height = Application.GetRealWidth(16),
+            Y = Application.GetRealHeight(19),
+            X = Application.GetRealWidth(122),
+            UnSelectedImagePath = "LogicIcon/down.png",
+
+        };
+        /// <summary>
+        /// 绗簩涓枃鏈弿杩�
+        /// </summary>
+        public Button btnText2 = new Button
+        {
+            TextSize = TextSize.text12,
+            Width = Application.GetRealWidth(70),
+            Height = Application.GetRealHeight(17),
+            TextColor = CSS.CSS_Color.textColor,
+            Y=Application.GetRealHeight(18),
+            X = Application.GetRealWidth(140),
+            TextAlignment = TextAlignment.CenterLeft,
+            TextID = StringId.allFun,
+        };
+
+        /// <summary>
+        ///View鐨勬柟娉�
+        /// </summary>
+        /// <returns></returns>
+        public FrameLayout FLayoutView()
+        {
+            frameLayout.AddChidren(btnIcon1);
+            frameLayout.AddChidren(btnText1);
+            frameLayout.AddChidren(btnIcon2);
+            frameLayout.AddChidren(btnText2);
+            return frameLayout;
+        }
+       
+    }
+}

--
Gitblit v1.8.0