黄学彪
2019-10-18 97e259d966cb5cb5d73c105d5dbaadcc1f920614
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using ZigBee.Device;
 
namespace Shared.Phone.UserCenter.SharedContent
{
    /// <summary>
    /// 配置新共享内容的主界面
    /// </summary>
    public class AddNewSharedContentForm : EditorCommonForm
    {
        #region ■ 变量声明___________________________
 
        ///// <summary>
        ///// 设备列表控件
        ///// </summary>
        //private VerticalScrolViewLayout listDeviceView = null;
        ///// <summary>
        ///// 场景列表控件
        ///// </summary>
        //private VerticalScrolViewLayout listSceneView = null;
        ///// <summary>
        ///// 成员信息
        ///// </summary>
        //private MemberInfoRes memberResult = null;
 
        ///// <summary>
        ///// 房间对象
        ///// </summary>
        //private Common.Room room = null;
        ///// <summary>
        ///// Tab的选择。1:功能Tab  2:场景Tab
        ///// </summary>
        //private int TabSelectIndex = 1;
 
        #endregion
 
        #region ■ 初始化_____________________________
 
        ///// <summary>
        ///// 画面显示(底层会固定调用此方法,借以完成画面创建)
        ///// </summary>
        ///// <param name="i_room">房间对象</param>
        ///// <param name="i_memberResult">成员信息</param>
        ///// <param name="i_memberShardInfo">成员的分享数据</param>
        //public void ShowForm(Common.Room i_room, MemberInfoRes i_memberResult, MemberShardInfoData i_memberShardInfo)
        //{
        //    this.memberResult = i_memberResult;
        //    this.memberShardInfo = i_memberShardInfo;
        //    this.room = i_room;
 
        //    //设置头部信息
        //    base.SetTitleText(this.room.Name);
 
        //    //分享
        //    //var btnShard = new TopLayoutFinshView();
        //    //btnShard.TextID = R.MyInternationalizationString.uShared;
        //    //topFrameLayout.AddChidren(btnShard);
        //    //btnShard.MouseUpEventHandler += (sender, e) =>
        //    //{
        //    //    HdlThreadLogic.Current.Run(() =>
        //    //    {
        //    //        //确认分享
        //    //        this.DoSaveSharedContent();
        //    //    });
        //    //};
 
        //    ////初始化中部信息
        //    //this.InitMiddleFrame();
        //}
 
        ///// <summary>
        ///// 初始化中部信息
        ///// </summary>
        //private void InitMiddleFrame()
        //{
        //    //清空bodyFrame
        //    this.ClearBodyFrame();
 
        //    //初始化Tab控件
        //    var frame = this.InitTabControl();
 
        //    this.listDeviceView = new VerticalScrolViewLayout();
        //    listDeviceView.Y = frame.Bottom;
        //    listDeviceView.Height = bodyFrameLayout.Height - frame.Bottom;
        //    listDeviceView.Visible = this.TabSelectIndex == 1;
        //    bodyFrameLayout.AddChidren(listDeviceView);
 
        //    this.listSceneView = new VerticalScrolViewLayout();
        //    listSceneView.Y = frame.Bottom;
        //    listSceneView.Height = bodyFrameLayout.Height - frame.Bottom;
        //    listSceneView.Visible = this.TabSelectIndex == 2;
        //    bodyFrameLayout.AddChidren(listSceneView);
 
        //    HdlThreadLogic.Current.Run(() =>
        //    {
        //        //初始化功能Tab列表
        //        this.InitFunctionTabList();
        //        //初始化场景Tab列表
        //        this.InitSceneTabList();
        //    });
        //}
 
        #endregion
 
        //#region ■ 初始化Tab控件______________________
 
        ///// <summary>
        ///// 初始化Tab控件
        ///// </summary>
        ///// <returns></returns>
        //private FrameLayout InitTabControl()
        //{
        //    //Tab切换控件
        //    var frameSwich = new FrameLayout();
        //    frameSwich.Height = Application.GetRealHeight(150);
        //    frameSwich.BackgroundColor = UserCenterColor.Current.TopFrameLayout;
        //    bodyFrameLayout.AddChidren(frameSwich);
 
        //    //功能
        //    var btnFunction = new NormalViewControl(frameSwich.Width / 2, Application.GetRealHeight(100));
        //    btnFunction.Gravity = Gravity.CenterVertical;
        //    btnFunction.TextID = R.MyInternationalizationString.uFunction;
        //    btnFunction.TextAlignment = TextAlignment.Center;
        //    btnFunction.TextColor = UserCenterColor.Current.SelectTextColor;
        //    btnFunction.TextAlignment = TextAlignment.Center;
        //    frameSwich.AddChidren(btnFunction);
 
        //    //场景
        //    var btnScene = new NormalViewControl(frameSwich.Width / 2, Application.GetRealHeight(100));
        //    btnScene.Gravity = Gravity.CenterVertical;
        //    btnScene.X = frameSwich.Width / 2;
        //    btnScene.TextID = R.MyInternationalizationString.uScence;
        //    btnScene.TextAlignment = TextAlignment.Center;
        //    frameSwich.AddChidren(btnScene);
 
        //    //线
        //    var btnLine = new ProgressLine();
        //    btnLine.Gravity = Gravity.BottomLeft;
        //    frameSwich.AddChidren(btnLine);
        //    btnLine.SetValue(50, true);
 
        //    if (this.TabSelectIndex == 2)
        //    {
        //        btnScene.TextColor = UserCenterColor.Current.SelectTextColor;
        //        btnFunction.TextColor = Common.ZigbeeColor.Current.TextColor;
        //        btnLine.SetValue(50, false);
        //    }
 
        //    //功能Tab
        //    btnFunction.MouseUpEventHandler += (sender, e) =>
        //    {
        //        if (this.TabSelectIndex == 1)
        //        {
        //            return;
        //        }
        //        btnScene.TextColor = Common.ZigbeeColor.Current.TextColor;
        //        btnFunction.TextColor = UserCenterColor.Current.SelectTextColor;
        //        btnLine.SetValue(50);
        //        this.TabSelectIndex = 1;
 
        //        //隐藏场景列表控件,显示设备列表控件
        //        this.listSceneView.Visible = false;
        //        this.listDeviceView.Visible = true;
        //    };
 
        //    //场景Tab
        //    btnScene.MouseUpEventHandler += (sender, e) =>
        //    {
        //        if (this.TabSelectIndex == 2)
        //        {
        //            return;
        //        }
        //        btnScene.TextColor = UserCenterColor.Current.SelectTextColor;
        //        btnFunction.TextColor = Common.ZigbeeColor.Current.TextColor;
        //        btnLine.SetValue(50, false);
        //        this.TabSelectIndex = 2;
 
        //        //隐藏设备列表控件,显示场景列表控件
        //        this.listDeviceView.Visible = false;
        //        this.listSceneView.Visible = true;
        //    };
 
        //    return frameSwich;
        //}
 
        //#endregion
 
        //#region ■ 显示功能Tab列表____________________
 
        ///// <summary>
        ///// 初始化功能Tab列表
        ///// </summary>
        //private void InitFunctionTabList()
        //{
        //    if (memberShardInfo.dicAllMemberShard.ContainsKey(this.room.FileName) == false)
        //    {
        //        memberShardInfo.dicAllMemberShard[this.room.FileName] = new HashSet<string>();
        //    }
        //    var listCheck = memberShardInfo.dicAllMemberShard[this.room.FileName];
 
        //    foreach (var deviceUi in this.room.DeviceUIList)
        //    {
        //        var device = deviceUi.CommonDevice;
        //        if (device == null || listCheck.Contains(device.FilePath) == true)
        //        {
        //            //异常,或者已经分享了的,不再显示
        //            continue;
        //        }
        //        Application.RunOnMainThread(() =>
        //        {
        //            if (this.listDeviceView != null)
        //            {
        //                //添加设备行
        //                var deviceRow = new DeviceSelectControl(device);
        //                this.listDeviceView.AddChidren(deviceRow);
        //                deviceRow.InitControl();
        //                //不需要房间控件
        //                deviceRow.RemoveRoomControl();
        //            }
        //        });
        //    }
        //}
 
        //#endregion
 
        //#region ■ 显示场景Tab列表____________________
 
        ///// <summary>
        ///// 初始化场景Tab列表
        ///// </summary>
        //private void InitSceneTabList()
        //{
        //    if (memberShardInfo.dicAllMemberShard.ContainsKey(this.room.FileName) == false)
        //    {
        //        memberShardInfo.dicAllMemberShard[this.room.FileName] = new HashSet<string>();
        //    }
        //    var listCheck = memberShardInfo.dicAllMemberShard[this.room.FileName];
 
        //    foreach (var sceneUi in this.room.SceneUIList)
        //    {
        //        if (sceneUi == null || listCheck.Contains(sceneUi.FileName) == true)
        //        {
        //            //异常,或者已经分享了的,不再显示
        //            continue;
        //        }
        //        Application.RunOnMainThread(() =>
        //        {
        //            if (this.listSceneView != null)
        //            {
        //                //添加场景行
        //                var sceneRow = new SceneSelectRow(this.listSceneView, sceneUi);
        //            }
        //        });
        //    }
        //}
 
        //#endregion
 
        //#region ■ 获取选择的设备_____________________
 
        ///// <summary>
        ///// 获取选择的设备
        ///// </summary>
        ///// <param name="listCheck">重复检测</param>
        ///// <returns></returns>
        //private List<CommonDevice> GetSelectedDevice(HashSet<string> listCheck)
        //{
        //    var listDevice = new List<CommonDevice>();
        //    for (int i = 0; i < listDeviceView.ChildrenCount; i++)
        //    {
        //        var myView = listDeviceView.GetChildren(i);
        //        var selectRow = (DeviceSelectControl)myView;
        //        if (selectRow.IsSelected == true && listCheck.Contains(selectRow.device.FilePath) == false)
        //        {
        //            listCheck.Add(selectRow.device.FilePath);
        //            listDevice.Add(selectRow.device);
        //        }
        //    }
        //    return listDevice;
        //}
 
        //#endregion
 
        //#region ■ 获取选择的场景_____________________
 
        ///// <summary>
        ///// 获取选择的场景
        ///// </summary>
        ///// <param name="listCheck">重复检测</param>
        ///// <returns></returns>
        //private List<Common.SceneUI> GetSelectedSceneUI(HashSet<string> listCheck)
        //{
        //    var listSceneUI = new List<Common.SceneUI>();
        //    for (int i = 0; i < listSceneView.ChildrenCount; i++)
        //    {
        //        var myView = listSceneView.GetChildren(i);
        //        var selectRow = (SceneSelectRow)myView;
        //        if (selectRow.IsSelected == true && listCheck.Contains(selectRow.sceneUI.Id.ToString()) == false)
        //        {
        //            listCheck.Add(selectRow.sceneUI.Id.ToString());
        //            listSceneUI.Add(selectRow.sceneUI);
        //        }
        //    }
        //    return listSceneUI;
        //}
 
        //#endregion
 
        //#region ■ 确认分享___________________________
 
        ///// <summary>
        ///// 确认分享
        ///// </summary>
        //private async void DoSaveSharedContent()
        //{
        //    var listCheck = new HashSet<string>();
        //    //选择的设备
        //    var listSelectDevice = this.GetSelectedDevice(listCheck);
        //    //选择的场景
        //    var listSelectScene = this.GetSelectedSceneUI(listCheck);
        //    if (listSelectDevice.Count == 0 && listSelectScene.Count == 0)
        //    {
        //        //请选择目标后再执行分享操作
        //        string msg = Language.StringByID(R.MyInternationalizationString.uNotSelectDeviceBeforeSave);
        //        this.ShowErrorMsg(msg);
        //        return;
        //    }
        //    //执行上传分享内容
        //    var result = await HdlShardLogic.Current.DoUploadSharedContent(memberShardInfo, this.room, listSelectDevice, listSelectScene);
        //    if (result == true)
        //    {
        //        Application.RunOnMainThread(() =>
        //        {
        //            //重新刷新界面
        //            this.InitMiddleFrame();
        //            //分享成功
        //            string msg = Language.StringByID(R.MyInternationalizationString.uShardSuccess);
        //            this.ShowMassage(msg);
        //        });
        //    }
        //}
 
        //#endregion
 
 
        #region ■ 变量声明___________________________
 
        /// <summary>
        /// 查看的房间对象
        /// </summary>
        private Common.Room lookRoom = null;
        /// <summary>
        /// 成员的分享数据
        /// </summary>
        private MemberShardInfoData memberShardInfo = null;
        /// <summary>
        /// 当前选择的分支,1:场景  2:功能
        /// </summary>
        private int nowSelectIndex = 1;
        /// <summary>
        /// 设备桌布控件
        /// </summary>
        private FrameLayout frameDeviceTable = null;
        /// <summary>
        /// 设备桌布控件
        /// </summary>
        private FrameLayout frameSceneTable = null;
        /// <summary>
        /// 功能按钮
        /// </summary>
        private BottomClickButton btnShard = null;
 
        #endregion
 
        #region ■ 初始化_____________________________
 
        /// <summary>
        /// 画面显示(底层会固定调用此方法,借以完成画面创建)
        /// </summary>
        /// <param name="i_room">查看的房间对象</param>
        public void ShowForm(Common.Room i_room, MemberShardInfoData i_memberShardInfo)
        {
            this.lookRoom = i_room;
            this.memberShardInfo = i_memberShardInfo;
 
            //设置头部信息
            base.SetTitleText(Language.StringByID(R.MyInternationalizationString.uAddShared));
 
            //初始化中部信息
            this.InitMiddleFrame();
        }
 
        /// <summary>
        /// 初始化中部信息
        /// </summary>
        private void InitMiddleFrame()
        {
            //清空bodyFrame
            this.ClearBodyFrame();
 
            //初始化分支控件
            this.InitSwitchControl();
 
            //初始化桌布控件
            this.frameSceneTable = new FrameLayout();
            frameSceneTable.Y = Application.GetRealHeight(132);
            frameSceneTable.Height = bodyFrameLayout.Height - Application.GetRealHeight(132);
            bodyFrameLayout.AddChidren(frameSceneTable);
 
            this.frameDeviceTable = new FrameLayout();
            frameDeviceTable.Y = frameSceneTable.Y;
            frameDeviceTable.Height = frameSceneTable.Height;
            bodyFrameLayout.AddChidren(frameDeviceTable);
            frameDeviceTable.Visible = false;
 
            //房间
            var btnRoom = new NormalViewControl(400, 63, true);
            btnRoom.Y = Application.GetRealHeight(40);
            btnRoom.X = bodyFrameLayout.Width - Application.GetRealWidth(58 + 400);
            btnRoom.Text = this.lookRoom.Name;
            btnRoom.TextAlignment = TextAlignment.CenterRight;
            bodyFrameLayout.AddChidren(btnRoom);
 
            this.btnShard = new BottomClickButton();
            btnShard.TextID = R.MyInternationalizationString.uShared2;
            bodyFrameLayout.AddChidren(btnShard);
            btnShard.Visible = false;
            btnShard.ButtonClickEvent += (sender, e) =>
            {
            };
 
            //初始化场景列表
            this.InitSceneList();
            //初始功能列表
            this.InitFunctionList();
        }
 
        /// <summary>
        /// 初始化分支控件
        /// </summary>
        private void InitSwitchControl()
        {
            var btnTemp = new NormalViewControl(10, 10, false);
            btnTemp.TextID = R.MyInternationalizationString.uScence;
 
            //场景框(点击范围有点小,需要扩大它的点击范围)
            var frameScene = new FrameLayoutControl();
            frameScene.UseClickStatu = false;
            frameScene.Height = Application.GetRealHeight(90);
            frameScene.Width = btnTemp.GetRealWidthByText(16);
            frameScene.X = ControlCommonResourse.XXLeft;
            frameScene.Y = Application.GetRealHeight(40);
            bodyFrameLayout.AddChidren(frameScene);
            //场景
            var btnScene = new NormalViewControl(frameScene.Width, Application.GetRealHeight(63), false);
            btnScene.Text = btnTemp.Text;
            btnScene.TextSize = 16;
            btnScene.TextColor = UserCenterColor.Current.TextColor2;
            frameScene.AddChidren(btnScene, ChidrenBindMode.BindEventOnly);
            //底线
            var btnSceneLine = new NormalViewControl(40, 10, true);
            btnSceneLine.Y = btnScene.Bottom + Application.GetRealHeight(14);
            btnSceneLine.X = btnScene.X + btnScene.Width / 2 - Application.GetRealWidth(40) / 2;
            btnSceneLine.Radius = (uint)Application.GetRealHeight(10) / 2;
            btnSceneLine.BackgroundColor = UserCenterColor.Current.TextOrangeColor;
            frameScene.AddChidren(btnSceneLine, ChidrenBindMode.BindEventOnly);
 
            btnTemp.TextID = R.MyInternationalizationString.uFunction;
            //功能框(点击范围有点小,需要扩大它的点击范围)
            var frameFunc = new FrameLayoutControl();
            frameFunc.UseClickStatu = false;
            frameFunc.Height = Application.GetRealHeight(90);
            frameFunc.Width = btnTemp.GetRealWidthByText(16);
            frameFunc.X = frameScene.Right + Application.GetRealWidth(58);
            frameFunc.Y = Application.GetRealHeight(40);
            bodyFrameLayout.AddChidren(frameFunc);
            //功能
            var btnFunc = new NormalViewControl(frameFunc.Width, Application.GetRealHeight(63), false);
            btnFunc.Text = btnTemp.Text;
            btnFunc.TextColor = UserCenterColor.Current.TextGrayColor3;
            frameFunc.AddChidren(btnFunc, ChidrenBindMode.BindEventOnly);
            //底线
            var btnFuncLine = new NormalViewControl(40, 10, true);
            btnFuncLine.Y = btnFunc.Bottom + Application.GetRealHeight(14);
            btnFuncLine.X = btnFunc.X + btnFunc.Width / 2 - Application.GetRealWidth(40) / 2;
            btnFuncLine.Radius = (uint)Application.GetRealHeight(10) / 2;
            btnFuncLine.BackgroundColor = UserCenterColor.Current.TextOrangeColor;
            frameFunc.AddChidren(btnFuncLine, ChidrenBindMode.BindEventOnly);
            btnFuncLine.Visible = false;
 
            frameScene.ButtonClickEvent += (sender, e) =>
            {
                //场景分支选择
                if (this.nowSelectIndex == 1)
                {
                    return;
                }
                this.nowSelectIndex = 1;
 
                btnScene.TextSize = 16;
                btnScene.TextColor = UserCenterColor.Current.TextColor2;
                btnFunc.TextSize = 14;
                btnFunc.TextColor = UserCenterColor.Current.TextGrayColor3;
                btnSceneLine.Visible = true;
                btnFuncLine.Visible = false;
 
                //显示场景列表
                this.frameSceneTable.Visible = true;
                this.frameDeviceTable.Visible = false;
            };
 
            frameFunc.ButtonClickEvent += (sender, e) =>
            {
                //功能分支选择
                if (this.nowSelectIndex == 2)
                {
                    return;
                }
                this.nowSelectIndex = 2;
 
                btnScene.TextSize = 14;
                btnScene.TextColor = UserCenterColor.Current.TextGrayColor3;
                btnFunc.TextSize = 16;
                btnFunc.TextColor = UserCenterColor.Current.TextColor2;
                btnFuncLine.Visible = true;
                btnSceneLine.Visible = false;
 
                //显示功能列表
                this.frameSceneTable.Visible = false;
                this.frameDeviceTable.Visible = true;
            };
        }
 
        #endregion
 
        #region ■ 场景显示___________________________
 
        /// <summary>
        /// 初始化场景列表
        /// </summary>
        private void InitSceneList()
        {
            //清空桌布
            this.frameSceneTable.RemoveAll();
 
            var listView = new VerticalFrameControl(29);
            listView.Y = Application.GetRealHeight(53);
            listView.Height = bodyFrameLayout.Height - Application.GetRealHeight(187);
            frameSceneTable.AddChidren(listView);
 
            HdlThreadLogic.Current.RunMainInThread(() =>
            {
                foreach (var data in lookRoom.SceneUIList)
                {
                    //场景图片
                    var frameContr = new FrameLayoutControl();
                    frameContr.UseClickStatu = false;
                    frameContr.Width = Application.GetRealWidth(878);
                    frameContr.Height = Application.GetRealHeight(440);
                    frameContr.Gravity = Gravity.CenterHorizontal;
                    frameContr.BackgroundImagePath = data.IconPath;
                    listView.AddChidrenFrame(frameContr);
 
                    var btnSelect = new IconViewControl(58);
                    btnSelect.UnSelectedImagePath = "Item/ItemUnSelected.png";
                    btnSelect.SelectedImagePath = "Item/ItemSelected.png";
                    btnSelect.X = Application.GetRealWidth(786);
                    btnSelect.Y = Application.GetRealHeight(35);
                    frameContr.AddChidren(btnSelect, ChidrenBindMode.BindEventOnly);
                    frameContr.ButtonClickEvent += (sender, e) =>
                    {
                        btnSelect.IsSelected = !btnSelect.IsSelected;
                    };
                }
            });
        }
 
        #endregion
 
        #region ■ 功能显示___________________________
 
        /// <summary>
        /// 初始化功能列表
        /// </summary>
        private void InitFunctionList()
        {
            //清空桌布
            this.frameDeviceTable.RemoveAll();
 
            var frameBack = new FrameLayoutControl(false);
            frameBack.X = ControlCommonResourse.XXLeft;
            frameBack.Y = Application.GetRealHeight(178);
            frameBack.BackgroundColor = UserCenterColor.Current.White;
            frameBack.Width = bodyFrameLayout.Width;
            frameBack.Height = Application.GetRealHeight(1650);
            frameBack.RadiusEx = 20;
            frameDeviceTable.AddChidren(frameBack);
 
            var listView = new VerticalListControl(23);
            listView.Y = Application.GetRealHeight(23);
            listView.Height = Application.GetRealHeight(1437 - 23);
            frameBack.AddChidren(listView);
 
            HdlThreadLogic.Current.RunMainInThread(() =>
            {
                //获取分组后的设备列表
                var dicGroupDevice = this.GetAllGroupDevice();
                //初始化设备类型行
                this.InitDeviceObjectRow(dicGroupDevice, listView);
            });
        }
 
        #endregion
 
        #region ■ 初始化设备类型行___________________
 
        /// <summary>
        /// 初始化设备类型行
        /// </summary>
        /// <param name="dicData"></param>
        /// <param name="listView"></param>
        private void InitDeviceObjectRow(Dictionary<int, List<CommonDevice>> dicData, VerticalListControl listView)
        {
            var scrolContr = new HorizontalScrolViewLayout();
            scrolContr.X = ControlCommonResourse.XXLeft / 2;
            scrolContr.Width = bodyFrameLayout.Width - ControlCommonResourse.XXLeft / 2;
            scrolContr.Height = Application.GetRealHeight(160);
            this.frameDeviceTable.AddChidren(scrolContr);
 
            int oldTextId = 0;
            FrameLayout oldFrameBack = null;
            NormalViewControl oldBtnText = null;
 
            foreach (int textId in dicData.Keys)
            {
                var frameMain = new FrameLayout();
                frameMain.Height = scrolContr.Height;
                frameMain.Width = Application.GetRealWidth(250) + ControlCommonResourse.XXLeft;
                scrolContr.AddChidren(frameMain);
                var frameBack = new FrameLayoutControl();
                frameBack.UseClickStatu = false;
                frameBack.Gravity = Gravity.CenterHorizontal;
                frameBack.Height = frameMain.Height;
                frameBack.Width = Application.GetRealWidth(187);
                if (scrolContr.ChildrenCount == 1)
                {
                    oldTextId = textId;
                    frameBack.BackgroundImagePath = "Item/RoomIconBackgroundSelected.png";
                    oldFrameBack = frameBack;
                }
                else
                {
                    frameBack.BackgroundImagePath = "Item/RoomIconBackground.png";
                }
                frameMain.AddChidren(frameBack);
                var btnText = new NormalViewControl(frameBack.Width - frameBack.Height, frameBack.Height, false);
                btnText.Gravity = Gravity.CenterHorizontal;
                btnText.TextID = textId;
                btnText.TextSize = 12;
                btnText.TextAlignment = TextAlignment.Center;
                if (scrolContr.ChildrenCount == 1)
                {
                    btnText.TextColor = UserCenterColor.Current.White;
                    oldBtnText = btnText;
                }
                else
                {
                    btnText.TextColor = UserCenterColor.Current.TextGrayColor1;
                }
                frameBack.AddChidren(btnText, ChidrenBindMode.BindEventOnly);
 
                frameBack.ButtonClickEvent += (sender, e) =>
                {
                    if (oldTextId == textId)
                    {
                        //同一个东西
                        return;
                    }
                    oldTextId = textId;
 
                    //状态变更
                    frameBack.BackgroundImagePath = "Room/RoomIconBackgroundSelected.png";
                    btnText.TextColor = UserCenterColor.Current.White;
 
                    oldFrameBack.BackgroundImagePath = "Room/RoomIconBackground.png";
                    oldBtnText.TextColor = UserCenterColor.Current.TextGrayColor1;
                    oldFrameBack = frameBack;
                    oldBtnText = btnText;
                    //添加设备行
                    this.AddDeviceRow(dicData[textId], listView);
                };
            }
 
            //添加设备行
            foreach (int textId in dicData.Keys)
            {
                this.AddDeviceRow(dicData[textId], listView);
                break;
            }
        }
 
        #endregion
 
        #region ■ 添加设备行_________________________
 
        /// <summary>
        /// 添加设备行
        /// </summary>
        /// <param name="listDevice"></param>
        /// <param name="listView"></param>
        private void AddDeviceRow(List<CommonDevice> listDevice, VerticalListControl listView)
        {
            listView.RemoveAll();
 
            foreach (var device in listDevice)
            {
                var frameRow = new FrameRowControl(listView.rowSpace / 2);
                frameRow.UseClickStatu = false;
                frameRow.LeftOffset = Application.GetRealWidth(46) - ControlCommonResourse.XXLeft;
                frameRow.RightOffset = -ControlCommonResourse.XXLeft;
                listView.AddChidren(frameRow);
                //图标
                var btnIcon = frameRow.AddLeftIcon(81);
                Common.LocalDevice.Current.SetDeviceIconToControl(btnIcon, device);
                //名称
                var btnView = frameRow.AddLeftCaption(string.Empty, 600);
                btnView.Text = Common.LocalDevice.Current.GetDeviceEpointName(device);
                btnView.TextSize = 15;
                //底线
                frameRow.AddBottomLine();
                //选择
                var btnSelect = frameRow.AddMostRightEmptyIcon(69, 69);
                btnSelect.UnSelectedImagePath = "Item/ItemUnSelected.png";
                btnSelect.SelectedImagePath = "Item/ItemSelected.png";
                frameRow.ChangedChidrenBindMode(btnSelect, ChidrenBindMode.NotBind);
                btnSelect.ButtonClickEvent += (sender, e) =>
                {
                    btnSelect.IsSelected = !btnSelect.IsSelected;
                };
            }
        }
 
        #endregion
 
        #region ■ 整合设备___________________________
 
        /// <summary>
        /// 获取分组后的设备
        /// </summary>
        /// <returns></returns>
        private Dictionary<int, List<CommonDevice>> GetAllGroupDevice()
        {
            //全部的设备
            var listDevice = lookRoom.GetRoomListDevice();
            var dic = new Dictionary<int, List<CommonDevice>>();
            foreach (var device in listDevice)
            {
                var typeInfo = Common.LocalDevice.Current.GetNotHdlMyDeviceEnumInfo(new List<ZigBee.Device.CommonDevice>() { device });
                if (device.Type == DeviceType.IASZone)
                {
                    //这个强制为传感器
                    typeInfo.BeloneTextId = R.MyInternationalizationString.uDeviceBelongId1200;
                    typeInfo.ConcreteType = Common.DeviceConcreteType.Sensor;
                }
                if (device.Type == DeviceType.OnOffOutput)
                {
                    //继电器的时候,需要特殊处理
                    if (device.DfunctionType == DeviceFunctionType.A开关)
                    {
                        typeInfo.BeloneTextId = R.MyInternationalizationString.uSwitch;
                    }
                    else if (device.DfunctionType == DeviceFunctionType.A插座)
                    {
                        typeInfo.BeloneTextId = R.MyInternationalizationString.uSocket1;
                    }
                    else if (device.DfunctionType == DeviceFunctionType.A灯光)
                    {
                        typeInfo.BeloneTextId = R.MyInternationalizationString.uLight;
                    }
                    else
                    {
                        //继电器
                        typeInfo.BeloneTextId = R.MyInternationalizationString.uDeviceBelongId2300;
                    }
                    if (dic.ContainsKey(typeInfo.BeloneTextId) == false)
                    {
                        dic[typeInfo.BeloneTextId] = new List<CommonDevice>();
                    }
                }
                else
                {
                    if (dic.ContainsKey(typeInfo.BeloneTextId) == false)
                    {
                        dic[typeInfo.BeloneTextId] = new List<CommonDevice>();
                    }
                }
                dic[typeInfo.BeloneTextId].Add(device);
            }
            return dic;
        }
 
        #endregion
    }
}