xm
2019-07-16 b910cb79c9b5bcc204022a3cf9e6950f0a64dfbd
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
using System;
using System.Collections.Generic;
using System.Text;
using ZigBee.Device;
 
namespace Shared.Phone.UserCenter.Safety
{
    /// <summary>
    /// 延时设置的主界面★
    /// </summary>
    public class DelayedSettionMainForm : UserCenterCommonForm
    {
        #region ■ 变量声明___________________________
 
        /// <summary>
        /// 防区的延迟时间
        /// </summary>
        private Safeguard.CatDelayTimeResponseData timeResponseData = null;
        /// <summary>
        /// 进入延迟的时间控件
        /// </summary>
        private RowSecondRightTextView inDelayTimeControl = null;
        /// <summary>
        /// 外出延迟的时间控件
        /// </summary>
        private RowSecondRightTextView outDelayTimeControl = null;
 
        #endregion
 
        #region ■ 初始化_____________________________
 
        /// <summary>
        /// 画面显示(底层会固定调用此方法,借以完成画面创建)
        /// </summary>
        public void ShowForm()
        {
            //设置头部信息
            base.SetTitleText(Language.StringByID(R.MyInternationalizationString.uDelayedSettion));
 
            //初始化中部信息
            this.InitMiddleFrame();
        }
 
        /// <summary>
        /// 初始化中部信息
        /// </summary>
        private void InitMiddleFrame()
        {
            //该功能只对出入防区有效
            var btnTitle = new TitleViewControl();
            btnTitle.TextColor = UserCenterColor.Current.TextGrayColor;
            btnTitle.Y = Application.GetRealHeight(40);
            btnTitle.TextID = R.MyInternationalizationString.uThisFunctionOnlyInAndOutSectors;
            bodyFrameLayout.AddChidren(btnTitle);
 
            //添加所有的菜单
            this.AddAllMenuRow(btnTitle);
        }
 
        #endregion
 
        #region ■ 添加菜单___________________________
 
        /// <summary>
        /// 添加所有的菜单
        /// </summary>
        /// <param name="btnTitle"></param>
        private async void AddAllMenuRow(TitleViewControl btnTitle)
        {
            //打开进度条
            this.ShowProgressBar();
 
            //获取防区的延迟时间(仅限出入防区),出错时返回null
            this.timeResponseData = await Common.LocalSafeguard.Current.GetGarrisonDelayTime();
            if (timeResponseData == null)
            {
                //关闭进度条
                this.CloseProgressBar(ShowReLoadMode.YES);
                return;
            }
            //关闭进度条
            this.CloseProgressBar();
 
            Application.RunOnMainThread(() =>
            {
                //初始化【进入延时】行
                this.InitInDelayedRow(btnTitle);
 
                //初始化【外出延时】行
                this.InitOutDelayedRow(btnTitle);
            });
        }
 
        #endregion
 
        #region ■ 进入延时___________________________
 
        /// <summary>
        /// 初始化【进入延时】行
        /// </summary>
        /// <param name="titleView"></param>
        private void InitInDelayedRow(TitleViewControl titleView)
        {
            var rowLayout = new StatuRowLayout();
            rowLayout.Y = titleView.Bottom;
            bodyFrameLayout.AddChidren(rowLayout);
 
            //进入延时
            var txName = new RowCenterView(false);
            txName.TextID = R.MyInternationalizationString.uInDelayed;
            rowLayout.AddChidren(txName);
 
            //时间
            string second = Language.StringByID(R.MyInternationalizationString.Second);
            this.inDelayTimeControl = new RowSecondRightTextView();
            inDelayTimeControl.Text = this.timeResponseData.EntranceDelayTime + " " + second;
            rowLayout.AddChidren(inDelayTimeControl);
 
            //添加右箭头
            rowLayout.AddRightIconControl();
 
            rowLayout.MouseUpEvent += (sender, e) =>
            {
                List<string> listTime = this.GetTimeList();
                PickerView.Show(listTime, (value) =>
                {
                    //保存时间
                    int inTime = Convert.ToInt32(value.Replace(second, string.Empty).Trim());
                    this.SaveTime(inTime, this.timeResponseData.GoOutDelayTime);
                });
            };
        }
 
        #endregion
 
        #region ■ 外出延时___________________________
 
        /// <summary>
        /// 初始化【外出延时】行
        /// </summary>
        /// <param name="titleView"></param>
        private void InitOutDelayedRow(TitleViewControl titleView)
        {
            var rowLayout = new StatuRowLayout();
            rowLayout.Y = titleView.Bottom + ControlCommonResourse.ListViewRowHeight;
            bodyFrameLayout.AddChidren(rowLayout);
 
            //外出延时
            var txName = new RowCenterView(false);
            txName.TextID = R.MyInternationalizationString.uOutDelayed;
            rowLayout.AddChidren(txName);
 
            //时间
            string second = Language.StringByID(R.MyInternationalizationString.Second);
            this.outDelayTimeControl = new RowSecondRightTextView();
            outDelayTimeControl.Text = this.timeResponseData.GoOutDelayTime + " " + second;
            rowLayout.AddChidren(outDelayTimeControl);
 
            //添加右箭头
            rowLayout.AddRightIconControl();
 
            rowLayout.MouseUpEvent += (sender, e) =>
            {
                List<string> listTime = this.GetTimeList();
                PickerView.Show(listTime, (value) =>
                 {
                     //保存时间
                     int outTime = Convert.ToInt32(value.Replace(second, string.Empty).Trim());
                     this.SaveTime(this.timeResponseData.EntranceDelayTime, outTime);
                 });
            };
        }
 
        #endregion
 
        #region ■ 保存时间___________________________
 
        /// <summary>
        /// 保存时间
        /// </summary>
        /// <param name="inDelayTime">进入延迟时间</param>
        /// <param name="OutDelayTime">外出延迟时间</param>
        private async void SaveTime(int inDelayTime, int OutDelayTime)
        {
            //打开进度条
            this.ShowProgressBar();
            var result = await Common.LocalSafeguard.Current.SetGarrisonDelayTime(inDelayTime, OutDelayTime);
            //关闭进度条
            this.CloseProgressBar();
 
            if (result == true)
            {
                //修改缓存
                this.timeResponseData.EntranceDelayTime = inDelayTime;
                this.timeResponseData.GoOutDelayTime = OutDelayTime;
                Application.RunOnMainThread(() =>
                {
                    string second = Language.StringByID(R.MyInternationalizationString.Second);
                    this.inDelayTimeControl.Text = inDelayTime + " " + second;
                    this.outDelayTimeControl.Text = OutDelayTime + " " + second;
                });
            }
        }
 
        #endregion
 
        #region ■ 一般方法___________________________
 
        /// <summary>
        /// 获取时间列表
        /// </summary>
        /// <returns></returns>
        private List<string> GetTimeList()
        {
            List<string> list = new List<string>();
            string second = Language.StringByID(R.MyInternationalizationString.Second);
 
            list.Add("3 " + second);
            for (int i = 5; i <= 120; i = i + 5)
            {
                list.Add(i + " " + second);
            }
            list.Add("180 " + second);
            list.Add("240 " + second);
            list.Add("300 " + second);
 
            return list;
        }
 
        #endregion
    }
}