黄学彪
2019-12-12 7e863a33397f317ffc3ffd9288496d0e4f16aa66
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
using System;
using System.Collections.Generic;
using Shared;
using Shared.Common;
using Shared.R;
using ZigBee.Device;
namespace Shared.Phone.Device.Logic
{
    public class TemplateIgnore:FrameLayout
    {
        public TemplateIgnore()
        {
            Tag = "Logic";
 
        }
        Button selectedIcon = new Button();
        public void Show(CommonDevice common, string name, bool edit, int timevalue)
        {
 
            #region  最上面的布局代码
            var topRowLayout = new RowLayout
            {
                BackgroundColor = ZigbeeColor.Current.LogicTopBackgroundColor,
                Height = Application.GetRealHeight(184),
                LineColor = ZigbeeColor.Current.LogicRowLayoutTopLineColor,
            };
            this.AddChidren(topRowLayout);
 
            var titleName = new Button
            {
                TextSize = 17,
                TextColor = ZigbeeColor.Current.LogicTextBlackColor,
                TextAlignment = TextAlignment.CenterLeft,
                X = Application.GetRealWidth(176),
                Width = Application.GetRealWidth(600),
                Height = Application.GetRealHeight(69),
                Y = Application.GetRealHeight(92),
                Text = name,
                IsBold = true,
            };
            topRowLayout.AddChidren(titleName);
 
            var clickBtn = new Button
            {
                Width = Application.GetRealWidth(81 + 51),
                Height = Application.GetRealHeight(58 + 40),
                Y = Application.GetRealHeight(98 - 40),
            };
            topRowLayout.AddChidren(clickBtn);
            clickBtn.MouseDownEventHandler += (sender, e) =>
            {
                RemoveFromParent();
            };
 
            var back = new Button
            {
                Width = Application.GetRealWidth(30),
                Height = Application.GetRealHeight(51),
                X = Application.GetRealWidth(81),
                Y = Application.GetRealHeight(98),
                //Gravity = Gravity.CenterVertical;
                UnSelectedImagePath = "ZigeeLogic/back.png",
            };
            topRowLayout.AddChidren(back);
            back.MouseDownEventHandler += (sender, e) =>
            {
                RemoveFromParent();
            };
            #endregion
 
            var middle = new VerticalScrolViewLayout
            {
                Y = topRowLayout.Bottom,
                Height = Application.GetRealHeight(1920 - 184 - 260),
                BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor,
            };
            this.AddChidren(middle);
            int selectetimedvalue = 0;
            var timestrlist = new List<string> { "2", "5", "10", "20", "30", Language.StringByID(MyInternationalizationString.logiccustom) };
            foreach (var intvalue in timestrlist)
            {
 
                var timeframelayout = new FrameLayout
                {
                    Height = Application.GetRealHeight(160),
                    BackgroundColor = ZigbeeColor.Current.LogicBlankBackgroundColor,
                };
                middle.AddChidren(timeframelayout);
 
                var timeniconBtn = new Button
                {
                    Width = Application.GetRealWidth(81),
                    Height = Application.GetRealHeight(81),
                    X = Application.GetRealWidth(58),
                    Y = Application.GetRealHeight(55),
                    UnSelectedImagePath = "ZigeeLogic/point.png",
 
                };
                timeframelayout.AddChidren(timeniconBtn);
 
                var timeRow = new RowLayout
                {
                    Y = Application.GetRealHeight(30),
                    Width = Application.GetRealWidth(850),
                    Height = Application.GetRealHeight(130),
                    X = Application.GetRealWidth(176),
                    LineColor = ZigbeeColor.Current.LogicRowLayoutLineColor,
                };
                timeframelayout.AddChidren(timeRow);
 
                var timeBtn = new Button
                {
                    Text = intvalue.ToString() + Language.StringByID(MyInternationalizationString.Minute),
                    TextAlignment = TextAlignment.CenterLeft,
                    TextColor = ZigbeeColor.Current.LogicTextBlackColor,
                    Tag = intvalue,
                    TextSize = 15,
                };
                timeRow.AddChidren(timeBtn);
 
 
                var selected = new SelectedButton(789);
                timeRow.AddChidren(selected);
                //判断一个字符是字符串还是数字
                if (intvalue.Length < 3)
                {
                    if (timevalue == int.Parse(intvalue) * 60)
                    {
                        selectedIcon.Visible = false;
                        selectedIcon = selected;
                        selected.Visible = true;
                    }
                }
                else
                {
                    timeRow.LineColor = ZigbeeColor.Current.LogicBlankBackgroundColor;
                }
                EventHandler<MouseEventArgs> timeclick = (sender, e) =>
                {
                    selectedIcon.Visible = false;
                    selectedIcon = selected;
                    selected.Visible = true;
                    if (Language.StringByID(MyInternationalizationString.logiccustom) == timeBtn.Tag.ToString())
                    {
                        var secondList = new List<string>();
                        var minuteList = new List<string>();
                        for (int i = 0; i < 61; i++)
                        {
                            if (i < 10)
                            {
                                var a = "0" + i.ToString();
                                secondList.Add(a + " " + Language.StringByID(MyInternationalizationString.second));
                                minuteList.Add(a + " " + Language.StringByID(MyInternationalizationString.minute));
                            }
                            else
                            {
                                secondList.Add(i.ToString() + " " + Language.StringByID(MyInternationalizationString.second));
                                minuteList.Add(i.ToString() + " " + Language.StringByID(MyInternationalizationString.minute));
                            }
 
                        }
                        int selectIndex1 = 0;
                        int selectIndex2 = 0;
                        if (timevalue > 3600)
                        {
                            selectIndex1 = 60;
                            selectIndex2 = timevalue - 3600;
                        }
                        else
                        {
                            selectIndex1 = timevalue / 60;
                            selectIndex2 = timevalue % 60;
                        }
                        PickerView.ShowNormal(minuteList, secondList, new List<string>(), (Index1, Index2, Index3) =>
                        {
                            selectetimedvalue = int.Parse(minuteList[Index1].Split(' ')[0]) * 60 + int.Parse(secondList[Index2].Split(' ')[0]);
                            timemethod(common, selectetimedvalue, timevalue, edit);
                        }, selectIndex1, selectIndex2, 0, Language.StringByID(MyInternationalizationString.logiccustom));
                    }
                    else
                    {
                        selectetimedvalue = int.Parse(timeBtn.Tag.ToString()) * 60;
                    }
                };
                timeframelayout.MouseUpEventHandler += timeclick;
                timeniconBtn.MouseUpEventHandler += timeclick;
                timeRow.MouseUpEventHandler += timeclick;
                timeBtn.MouseUpEventHandler += timeclick;
                selected.MouseUpEventHandler += timeclick;
            }
 
            var saveFrameLayout = new FrameLayout
            {
                Y = middle.Bottom,
                Height = Application.GetRealHeight(260),
                BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor,
            };
            this.AddChidren(saveFrameLayout);
 
            var btnsave = new Button
            {
                X = Application.GetRealWidth(85),
                Height = Application.GetRealHeight(130),//194
                Width = Application.GetRealWidth(910),
                Radius = (uint)Application.GetRealHeight(60),
                BackgroundColor = ZigbeeColor.Current.LogicBtnSaveBackgroundColor,
                TextID = MyInternationalizationString.Save,
                TextColor = ZigbeeColor.Current.LogicBtnSaveTextColor,
                TextSize = 16,
            };
            saveFrameLayout.AddChidren(btnsave);
            btnsave.MouseUpEventHandler += (sender, e) =>
            {
                timemethod(common, selectetimedvalue, timevalue, edit);
            };
        }
 
        public void timemethod(CommonDevice common, int selectetimedvalue, int timevalue, bool edit)
        {
 
            var deviceConditionsInfo = new Dictionary<string, string>();
            deviceConditionsInfo.Add("Type", "1");
            deviceConditionsInfo.Add("IsValid", "1");
            deviceConditionsInfo.Add("MacAddr", common.DeviceAddr);
            deviceConditionsInfo.Add("Epoint", common.DeviceEpoint.ToString());
            deviceConditionsInfo.Add("Cluster_ID", "1280");
            deviceConditionsInfo.Add("AttriButeId", "1281");
            deviceConditionsInfo.Add("AttriButeData1", "0");
            deviceConditionsInfo.Add("AttriButeData2", "0");
            deviceConditionsInfo.Add("Range", "1");
            if (selectetimedvalue != 0)
            {
                if (timevalue != selectetimedvalue)
                {
                    if (deviceConditionsInfo.ContainsKey("IgnoreTime"))
                    {
                        deviceConditionsInfo.Remove("IgnoreTime");
                    }
                    deviceConditionsInfo.Add("IgnoreTime", selectetimedvalue.ToString());
                    LogicIfon.AddDeviceconditions(common, deviceConditionsInfo);
                }
 
            }
            else
            {
                if (!edit)
                {
                    var alert = new Alert(Language.StringByID(MyInternationalizationString.Prompt),
                                           Language.StringByID(MyInternationalizationString.delaytip),
                                           Language.StringByID(MyInternationalizationString.confrim));
                    alert.Show();
                    return;
                }
 
            }
            var templatePage = new TemplatePage();
            UserView.HomePage.Instance.AddChidren(templatePage);
            UserView.HomePage.Instance.PageIndex += 1;
            templatePage.Show();
 
        }
    }
}