From 2109463fab2eb1caed189e4f258e0e763c5cea7b Mon Sep 17 00:00:00 2001
From: WJC <wjc@hdlchina.com.cn>
Date: 星期四, 07 十一月 2019 11:58:53 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev-tzy' into dev-wjc

---
 ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/RowLayoutControls/RowLayoutControl.cs |   44 ++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 44 insertions(+), 0 deletions(-)

diff --git a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/RowLayoutControls/RowLayoutControl.cs b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/RowLayoutControls/RowLayoutControl.cs
index 8ac4d34..380731e 100755
--- a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/RowLayoutControls/RowLayoutControl.cs
+++ b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/RowLayoutControls/RowLayoutControl.cs
@@ -62,5 +62,49 @@
         }
 
         #endregion
+
+        #region 鈻� 娣诲姞鍒犻櫎鎺т欢_______________________
+
+        /// <summary>
+        /// 娣诲姞鍒犻櫎鎺т欢
+        /// </summary>
+        /// <returns></returns>
+        public NormalViewControl AddDeleteControl()
+        {
+            //鍒犻櫎
+            var btnDelete = new NormalViewControl(Application.GetRealWidth(184), this.Height, false);
+            btnDelete.BackgroundColor = 0xfff75858;
+            btnDelete.TextSize = 12;
+            btnDelete.TextColor = UserCenterColor.Current.White;
+            btnDelete.TextAlignment = TextAlignment.Center;
+            btnDelete.TextID = R.MyInternationalizationString.uDelete;
+            this.AddRightView(btnDelete);
+
+            return btnDelete;
+        }
+
+        #endregion
+
+        #region 鈻� 娣诲姞缂栬緫鎺т欢_______________________
+
+        /// <summary>
+        /// 娣诲姞缂栬緫鎺т欢
+        /// </summary>
+        /// <returns></returns>
+        public NormalViewControl AddEditorControl()
+        {
+            var btnEditor = new NormalViewControl(Application.GetRealWidth(184), this.Height, false);
+            btnEditor.BackgroundColor = 0xff4a4a4a;
+            btnEditor.TextSize = 12;
+            btnEditor.TextColor = UserCenterColor.Current.White;
+            btnEditor.TextAlignment = TextAlignment.Center;
+            btnEditor.TextID = R.MyInternationalizationString.uEditor;
+            this.AddRightView(btnEditor);
+
+            return btnEditor;
+        }
+
+        #endregion
+
     }
 }

--
Gitblit v1.8.0