黄学彪
2020-12-16 0d9f64668fd7350d6a21fd157e32009a96d98134
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
using System;
using System.Collections.Generic;
 
namespace Shared.Phone
{
    /// <summary>
    /// 做成一个点击能够显示选中状态背景色的RowLayout(拥有桌布)
    /// </summary>
    public class RowLayoutControl : RowLayoutBase
    {
        #region ■ 变量声明___________________________
 
        /// <summary>
        /// 桌布控件
        /// </summary>
        private FrameRowControl m_frameTable = null;
        /// <summary>
        /// 桌布控件
        /// </summary>
        public FrameRowControl frameTable
        {
            get
            {
                if (m_frameTable == null) { this.InitFrameTableControl(); }
                return m_frameTable;
            }
        }
        /// <summary>
        /// 此控件的识别主键(自定义设置的)
        /// </summary>
        public string MainKeys = string.Empty;
        /// <summary>
        /// 子控件Y轴偏移量(共通定义而已,有些界面需要这种特殊操作)
        /// </summary>
        public int chidrenYaxis = 0;
 
        #endregion
 
        #region ■ 初始化_____________________________
 
        /// <summary>
        /// 做成一个点击能够显示选中状态背景色的RowLayout(拥有桌布)
        /// </summary>
        /// <param name="ChidrenYaxis">子控件Y轴偏移量(【列表控件的rowSpace/2】即可,不懂默认为0即可)</param>
        public RowLayoutControl(int i_ChidrenYaxis = 0)
        {
            this.LineColor = UserCenterColor.Current.Transparent;
            this.SubViewWidth = Application.GetRealWidth(184);
 
            this.chidrenYaxis = i_ChidrenYaxis;
            this.Height = HdlControlResourse.ListViewRowHeight;
            this.Width = Application.CurrentWidth;
        }
 
        /// <summary>
        /// 初始化桌布控件
        /// </summary>
        private void InitFrameTableControl()
        {
            this.m_frameTable = new FrameRowControl(chidrenYaxis);
            this.m_frameTable.Height = this.Height;
            base.AddChidren(frameTable);
        }
 
        #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>
        /// <param name="hideMenuByClick">点击时,是否隐藏左滑菜单</param>
        /// <returns></returns>
        public NormalViewControl AddEditorControl(bool hideMenuByClick = true)
        {
            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);
            if (hideMenuByClick == true)
            {
                btnEditor.ButtonClickEvent += (sender, e) =>
                {
                    //关闭左滑菜单
                    this.HideMenu();
                };
            }
 
            return btnEditor;
        }
 
        #endregion
    }
}