黄学彪
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
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
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Shared.Common;
using Shared.Phone.UserCenter.Device.Bind;
using Shared.Phone.UserCenter.DeviceBind;
using ZigBee.Device;
 
namespace Shared.Phone.UserCenter.Device
{
    /// <summary>
    /// 编辑设备的信息(这里修改的是MAC名,这个画面会更改MAC的物理名字)
    /// </summary>
    public class DeviceMacInfoEditorForm : EditorCommonForm
    {
        #region ■ 变量声明___________________________
 
        /// <summary>
        /// 设备对象
        /// </summary>
        private List<CommonDevice> listNewDevice = null;
        /// <summary>
        /// 列表控件
        /// </summary>
        private FrameListControl listview = null;
        /// <summary>
        /// 设备的设备类型
        /// </summary>
        private HashSet<DeviceType> listDeviceType = new HashSet<DeviceType>();
        /// <summary>
        /// 设备具体类型的信息
        /// </summary>
        private DeviceEnumInfo deviceEnumInfo = null;
        /// <summary>
        /// 中央空调的版本控件
        /// </summary>
        private NormalViewControl btnAirConditionerVersion = null;
        /// <summary>
        /// 简约多功能面板绑定的温度目标名字
        /// </summary>
        private string bindTemperatureName = string.Empty;
        /// <summary>
        /// 简约多功能面板绑定的湿度目标名字
        /// </summary>
        private string bindHumidityName = string.Empty;
        /// <summary>
        /// 简约多功能面板绑定被绑目标是温度
        /// </summary>
        private CommonDevice bindTemperatureDev;
        /// <summary>
        /// 简约多功能面板绑定被绑目标是湿度
        /// </summary>
        private CommonDevice bindHumidityDev;
        /// <summary>
        ///  简约面板当前Mac
        /// </summary>
        private string deviceMacTemp = string.Empty;
        // <summary>
        /// 简约多功能面板中被绑定的温湿度目标列表
        /// </summary>
        private List<BindObj.BindListResponseObj> bindList = new List<BindObj.BindListResponseObj>();
        /// <summary>
        /// 简约多功能面板的接近感应数据 
        private Panel.PanelProximitySensorInfo proximitySensorsInfo = new Panel.PanelProximitySensorInfo();
         #endregion
 
        #region ■ 初始化_____________________________
 
        /// <summary>
        /// 画面显示(底层会固定调用此方法,借以完成画面创建)
        /// </summary>
        /// <param name="deviceMac">设备mac地址</param>
        public void ShowForm(string deviceMac)
        {
            this.listNewDevice = HdlDeviceCommonLogic.Current.GetDevicesByMac(deviceMac);
            if (listNewDevice.Count == 0)
            {
                //针对单纯只有一个200端点的设备
                listNewDevice.Add(HdlDeviceCommonLogic.Current.GetOTADevice(deviceMac));
            }
            this.listDeviceType.Clear();
            deviceMacTemp = deviceMac;
            foreach (var device in listNewDevice)
            {
                //收集设备类型
                this.listDeviceType.Add(device.Type);
            }
            //获取这一堆设备时属于什么类型的
            this.deviceEnumInfo = HdlDeviceCommonLogic.Current.GetMyDeviceEnumInfo(listNewDevice);
 
            //设置标题信息
            base.SetTitleText(Language.StringByID(R.MyInternationalizationString.uDeviceSettion));
 
            //重新获取硬件信息(false:不需要获取,true:需要获取)
            var result = this.RefreshHardFirmwareInfo();
 
            HdlThreadLogic.Current.RunThread(() =>
            {
                if (result == true)
                {
                    //如果需要重新去读取设备的信息才能显示界面的话,等待一段时间
                    this.ShowProgressBar();
                    System.Threading.Thread.Sleep(1500);
                }
                HdlThreadLogic.Current.RunMain(() =>
                {
                    //初始化右上角菜单
                    this.InitTopRightMenu();
 
                    //初始化中部控件
                    this.InitMiddleFrame();
 
                    //简约多功能面板获取绑定目标的显示
                    if (deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_SimpleMultifunction)
                    {
                        //简约面板随便一个回路来获取设备信息
                        var dev = HdlDeviceCommonLogic.Current.GetDevice(deviceMac, 62);
                        if (dev != null)
                        {
                            var key = new ZigBee.Device.Panel();
                            key.DeviceAddr = deviceMac;
                            key.CurrentGateWayId = dev.CurrentGateWayId;
                            InitBindInfo(key);
                        }
                    }
                    if (result == true)
                    {
                        this.CloseProgressBar();
                    }
                });
            });
        }
 
        /// <summary>
        /// 初始化中部控件
        /// </summary>
        private void InitMiddleFrame()
        {
            //清空bodyFrame
            this.ClearBodyFrame();
 
            var listBackControl = new VerticalFrameControl();
            listBackControl.Height = bodyFrameLayout.Height;
            bodyFrameLayout.AddChidren(listBackControl);
 
            //初始化桌布
            var tableContr = new InformationEditorControl();
            this.listview = tableContr.InitControl(listBackControl.frameTable, Language.StringByID(R.MyInternationalizationString.uInfoEditor), 1368);
 
            //图片
            var btnPic = new DeviceInfoIconControl();
            btnPic.Y = Application.GetRealHeight(92);
            btnPic.Gravity = Gravity.CenterHorizontal;
            listBackControl.frameTable.AddChidren(btnPic);
            btnPic.InitControl(listNewDevice[0]);
 
            //设备备注
            string caption = Language.StringByID(R.MyInternationalizationString.uDeviceNote);
            string deviceName = HdlDeviceCommonLogic.Current.GetDeviceMacName(listNewDevice[0]);
            var btnNote = new FrameCaptionInputControl(caption, deviceName, listview.rowSpace / 2);
            btnNote.txtInput.MaxByte = 48;//限制只能输入48个字节
            listview.AddChidren(btnNote);
            btnNote.InitControl();
            //划线
            btnNote.AddBottomLine();
            btnNote.txtInput.FinishInputEvent += () =>
            {
                string oldName = HdlDeviceCommonLogic.Current.GetDeviceMacName(listNewDevice[0]);
                if (btnNote.Text == string.Empty)
                {
                    btnNote.Text = oldName;
                }
                if (oldName != btnNote.Text)
                {
                    //查看模板时,不允许编辑
                    if (Common.Config.Instance.Home.IsShowTemplate == true)
                    {
                        return;
                    }
                    //修改名字
                    this.DeviceReName(btnNote.Text, false);
                }
            };
 
            //设备类型
            caption = Language.StringByID(R.MyInternationalizationString.uDeviceType);
            deviceName = HdlDeviceCommonLogic.Current.GetDeviceObjectText(listNewDevice);
            var btnType = new FrameCaptionViewControl(caption, deviceName, listview.rowSpace / 2);
            btnType.UseClickStatu = false;
            listview.AddChidren(btnType);
            btnType.InitControl();
            //划线
            btnType.AddBottomLine();
 
            //安装位置
            var rowBeloneArea = new BelongAreaControl(listview.rowSpace / 2);
            listview.AddChidren(rowBeloneArea);
            rowBeloneArea.InitControl(Language.StringByID(R.MyInternationalizationString.uInstallationLocation), this.listNewDevice);
            //底线
            rowBeloneArea.AddBottomLine();
            //查看模板时,不允许编辑
            if (Common.Config.Instance.Home.IsShowTemplate == true)
            {
                rowBeloneArea.CanClick = false;
            }
 
            var listCheck = new List<string>();
            rowBeloneArea.SelectRoomEvent += (roomKeys) =>
            {
                //选择未分配时,清空
                if (roomKeys == string.Empty) { listCheck = new List<string>(); }
                foreach (var device in this.listNewDevice)
                {
                    if (device is OTADevice)
                    {
                        //针对单纯只有一个200端点的设备
                        continue;
                    }
                    if (roomKeys == string.Empty)
                    {
                        //如果选择的是未分配,则它的全部回路无条件全部清空房间
                        HdlRoomLogic.Current.ChangedRoom(device, roomKeys);
                        continue;
                    }
                    var room = HdlRoomLogic.Current.GetRoomByDevice(device);
                    string mainKeys = HdlDeviceCommonLogic.Current.GetDeviceMainKeys(device);
                    if (room == null)
                    {
                        //这里有点特殊,如果回路没有设置有区域的时候,才设置
                        listCheck.Add(mainKeys);
                        HdlRoomLogic.Current.ChangedRoom(device, roomKeys);
                    }
                    else if (this.deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueFreshAir
                      && device.Type == DeviceType.FreshAir)
                    {
                        //新风面板的新风设备,则区域跟着模块一起
                        HdlRoomLogic.Current.ChangedRoom(device, roomKeys);
                    }
                    else if (listCheck.Contains(mainKeys) == true)
                    {
                        //如果这个回路之前都还没有区域,在本界面还没有关闭之前,可以无条件随便变更
                        HdlRoomLogic.Current.ChangedRoom(device, roomKeys);
                    }
                }
                //保存设备房间索引
                HdlRoomLogic.Current.SaveRealDeviceRoomId(this.listNewDevice, roomKeys);
            };
 
            //添加全部菜单
            this.AddAllMenuRow();
 
            //初始化桌布完成
            tableContr.FinishInitControl();
            tableContr = null;
 
            //保存
            var btnFinish = new BottomClickButton();
            btnFinish.TextID = R.MyInternationalizationString.uSave;
            bodyFrameLayout.AddChidren(btnFinish);
            btnFinish.ButtonClickEvent += (sender, e) =>
            {
                string oldName = HdlDeviceCommonLogic.Current.GetDeviceMacName(listNewDevice[0]);
                if (btnNote.Text.Trim() == string.Empty)
                {
                    btnNote.Text = oldName;
                }
                if (oldName != btnNote.Text.Trim())
                {
                    //修改名字
                    this.DeviceReName(btnNote.Text.Trim(), true);
                }
                else
                {
                    //关闭自身
                    this.CloseForm();
                }
            };
            //查看模板时,不允许编辑
            if (Common.Config.Instance.Home.IsShowTemplate == true)
            {
                for (int i = 0; i < listview.ChildrenCount; i++)
                {
                    var myRow = listview.GetChildren(i) as FrameRowControl;
                    if (myRow != null)
                    {
                        myRow.UseClickStatu = false;
                        myRow.CanClick = false;
                    }
                }
            }
        }
 
        #endregion
 
        #region ■ 添加菜单___________________________
 
        /// <summary>
        /// 添加全部菜单
        /// </summary>
        private void AddAllMenuRow()
        {
            if (deviceEnumInfo.BeloneType == DeviceBeloneType.A智能门锁)
            {
                //只有是河东的设备的时候
                if (deviceEnumInfo.IsHdlDevice == true)
                {
                    //添加【用户管理】行
                    this.AddUserManageRow();
                    //添加【远程开锁】行
                    this.AddRemoteUnLocksRow();
                    //添加【门锁时间】行
                    this.AddDoorLocksTimeRow();
                }
            }
            else if (deviceEnumInfo.ConcreteType == DeviceConcreteType.AirConditioner_ZbGateway)
            {
                //添加【室内机设置】行(空调专用)
                this.AddIndoorUnitSettionRow();
            }
            else if (deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_SimpleMultifunction)
            {
                //简约多功能面板                 
                this.AddIBindRow(deviceMacTemp);
                this.AddProximitySensorsRow(deviceMacTemp);
                this.AddFunctionSettionRow(); 
                this.AddHumiditySourceRow(deviceMacTemp);
                this.AddTemperatureSensorRow(deviceMacTemp);
                this.DataCorrectionRow(deviceMacTemp);
            }
            else if (deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_SimpleEnvironment)
            {
                //添加【绑定目标】行(简约环境面板用) 
                this.AddSimplePanelSettionRow();
            }
            else
            {
                //添加【工作模式】行(pir传感器专用)
                this.AddPirSensorWorkModeRow();
                //添加【绑定目标】行(pir传感器专用)
                this.AddPirSensorBindRow();
                //添加【方向与限位】行(开合帘,卷帘专用)
                this.AddDirectionAndLimitRow();
                //添加【手拉控制】行(开合帘专用)
                this.AddHandPullControlRow();
                //添加【按键设置】行(方悦专用) --这个有可能和面板重叠
                if (this.AddFangyuePanelSettionRow() == false)
                {
                    //添加【按键设置】行(面板专用)
                    this.AddPanelSettionRow();
                }
                //检测能否显示功能设置的菜单
                if (this.CheckCanShowFunctionSettionRow() == true)
                {
                    //添加【功能设置】行
                    if (deviceEnumInfo.ConcreteType == DeviceConcreteType.Sensor_PMTwoPointFive)
                    {
                        //PM传感器
                        this.AddFunctionSettionRowPM();
                    }
                    else
                    {
                        this.AddFunctionSettionRow();
                    }
 
                }
 
                //添加【干接点设置】行
                this.AddDryContactSettionRow();
            }
            //添加【功能类型】行(空气开关专用)
            this.AddAirSwitchFunctionTypeRow();
            //添加【通用信息】行
            this.AddGeneralInformationRow();
 
            //添加【空调模块版本(空调专用)】行
            this.AddAirConditionerModelVersionRow();
 
            if (deviceEnumInfo.IsHdlDevice == true)
            {
                //添加【固件升级】行
                this.AddFirmwareUpdateRow();
            }
        }
 
        #endregion
 
        #region ■ 用户管理(门锁)_____________________
 
        /// <summary>
        /// 添加【用户管理】行(门锁专用)
        /// </summary>
        private void AddUserManageRow()
        {
            //如果是智能门锁
            if (deviceEnumInfo.BeloneType == DeviceBeloneType.A智能门锁)
            {
                //用户管理
                string caption = Language.StringByID(R.MyInternationalizationString.uUserManage);
                var btnRow = new FrameRowControl(listview.rowSpace / 2);
                listview.AddChidren(btnRow);
                btnRow.AddLeftCaption(caption, 600);
                //向右图标
                btnRow.AddRightArrow();
                //底线
                btnRow.AddBottomLine();
                var doorLock = this.listNewDevice[0] as ZigBee.Device.DoorLock;
                btnRow.ButtonClickEvent += async (sender, e) =>
                 {
                     if (HdlUserCenterResourse.ResidenceOption.AuthorityNo == 1)
                     {
                         Action action = null;
                         Action actionNone = null;
                         action = () =>
                         {
                             var userManagement = new Shared.Phone.UserCenter.DoorLock.UserManagement(doorLock);
                             Shared.Phone.UserView.HomePage.Instance.AddChidren(userManagement);
                             Shared.Phone.UserView.HomePage.Instance.PageIndex += 1;
                             userManagement.Show();
                         };
                         actionNone = () =>
                         {
                             Shared.Phone.UserCenter.DoorLock.DoorLockCommonLayout.SecurityRequest(doorLock);
                         };
                         HdlCheckLogic.Current.CheckSecondarySecurity(action, actionNone);
                     }
                     else
                     {
                         CommonPage.Loading.Start("");
                         var result = await Shared.Phone.UserCenter.DoorLock.DoorLockCommonInfo.GetDoorLockOperateAccess(doorLock, Shared.Common.Config.Instance.Guid);
                         if (result == false)
                         {
                             Action action = null;
                             Action actionNone = null;
                             action = () =>
                             {
                                 var userManagement = new Shared.Phone.UserCenter.DoorLock.UserManagement(doorLock);
                                 Shared.Phone.UserView.HomePage.Instance.AddChidren(userManagement);
                                 Shared.Phone.UserView.HomePage.Instance.PageIndex += 1;
                                 userManagement.Show();
                             };
                             actionNone = () =>
                             {
                                 Shared.Phone.UserCenter.DoorLock.DoorLockCommonLayout.SecurityRequest(doorLock);
                             };
                             HdlCheckLogic.Current.CheckSecondarySecurity(action, actionNone);
 
                         }
                         else
                         {
                             this.ShowMassage(ShowMsgType.Tip, Language.StringByID(R.MyInternationalizationString.AccountIsFreezed));
                         }
                         CommonPage.Loading.Hide();
                     }
                 };
            }
        }
 
        #endregion
 
        #region ■ 远程开锁(门锁)_____________________
 
        /// <summary>
        /// 添加【远程开锁】行(门锁专用)
        /// </summary>
        private void AddRemoteUnLocksRow()
        {
            //如果是智能门锁
            if (deviceEnumInfo.BeloneType == DeviceBeloneType.A智能门锁)
            {
                //远程开锁
                string caption = Language.StringByID(R.MyInternationalizationString.uRemoteUnLocks);
                var btnRow = new FrameRowControl(listview.rowSpace / 2);
                btnRow.UseClickStatu = false;
                listview.AddChidren(btnRow);
                btnRow.AddLeftCaption(caption, 600);
                //开关图标
                var btnswitch = btnRow.AddMostRightSwitchIcon();
                //底线
                btnRow.AddBottomLine();
 
                var doorLock = (ZigBee.Device.DoorLock)listNewDevice[0];
                if (string.IsNullOrEmpty(doorLock.RemoteUnlockPassword) == false)
                {
                    btnswitch.IsSelected = true;
                }
                //如果当前住宅是虚拟住宅的话,让所有菜单都不能点击
                if (Common.Config.Instance.Home.IsVirtually == true)
                {
                    btnswitch.CanClick = false;
                }
 
                btnswitch.ButtonClickEvent += async (sender, e) =>
                 {
                     if (HdlUserCenterResourse.ResidenceOption.AuthorityNo == 1)
                     {
                         if (btnswitch.IsSelected == true)
                         {
                             btnswitch.IsSelected = false;
                             doorLock.RemoteUnlockPassword = string.Empty;
                             return;
                         }
                         var frame = new DoorLock.DoorLockCommonLayout();
                         frame.RemotePasswordDialog((ZigBee.Device.DoorLock)listNewDevice[0], btnswitch.btnIcon);
                         frame = null;
                     }
                     else
                     {
                         var result = await Shared.Phone.UserCenter.DoorLock.DoorLockCommonInfo.GetDoorLockOperateAccess(doorLock, Shared.Common.Config.Instance.Guid);
                         if (result == false)
                         {
                             var result1 = await Shared.Phone.UserCenter.DoorLock.DoorLockCommonInfo.GetDoorLockUnlockAccess(doorLock, Shared.Common.Config.Instance.Guid);
                             if (result1 == true)
                             {
                                 if (btnswitch.IsSelected == true)
                                 {
                                     btnswitch.IsSelected = false;
                                     doorLock.RemoteUnlockPassword = string.Empty;
                                     return;
                                 }
                                 var frame = new DoorLock.DoorLockCommonLayout();
                                 frame.RemotePasswordDialog((ZigBee.Device.DoorLock)listNewDevice[0], btnswitch.btnIcon);
                                 frame = null;
                             }
                             else
                             {
                                 this.ShowMassage(ShowMsgType.Tip, Language.StringByID(R.MyInternationalizationString.NoAccess));
                             }
                         }
                         else
                         {
                             this.ShowMassage(ShowMsgType.Tip, Language.StringByID(R.MyInternationalizationString.AccountIsFreezed));
                         }
                     }
                 };
            }
        }
 
        #endregion
 
        #region ■ 门锁时间(门锁)_____________________
 
        /// <summary>
        /// 添加【门锁时间】行(门锁专用)
        /// </summary>
        private void AddDoorLocksTimeRow()
        {
            //如果是智能门锁
            if (deviceEnumInfo.BeloneType == DeviceBeloneType.A智能门锁)
            {
                //门锁时间
                string caption = Language.StringByID(R.MyInternationalizationString.uDoorLocksTime);
                var btnRow = new FrameRowControl(listview.rowSpace / 2);
                listview.AddChidren(btnRow);
                btnRow.AddLeftCaption(caption, 600);
                //向右图标
                btnRow.AddRightArrow();
                //底线
                btnRow.AddBottomLine();
                var doorLock = this.listNewDevice[0] as ZigBee.Device.DoorLock;
                btnRow.ButtonClickEvent += async (sender, e) =>
                 {
                     if (HdlUserCenterResourse.ResidenceOption.AuthorityNo == 1)
                     {
                         var tempPage = new Shared.Phone.UserCenter.DoorLock.TimeSettignPage(doorLock, "DoorLockTime");
                         Shared.Phone.UserView.HomePage.Instance.AddChidren(tempPage);
                         Shared.Phone.UserView.HomePage.Instance.PageIndex += 1;
                         tempPage.Show();
                     }
                     else
                     {
                         var result = await Shared.Phone.UserCenter.DoorLock.DoorLockCommonInfo.GetDoorLockOperateAccess(doorLock, Shared.Common.Config.Instance.Guid);
                         if (result == false)
                         {
                             var tempPage = new Shared.Phone.UserCenter.DoorLock.TimeSettignPage(doorLock, "DoorLockTime");
                             Shared.Phone.UserView.HomePage.Instance.AddChidren(tempPage);
                             Shared.Phone.UserView.HomePage.Instance.PageIndex += 1;
                             tempPage.Show();
                         }
                         else
                         {
                             this.ShowMassage(ShowMsgType.Tip, Language.StringByID(R.MyInternationalizationString.AccountIsFreezed));
                         }
                     }
                 };
            }
        }
 
        #endregion
 
        #region ■ 按键设置(面板)_____________________
 
        /// <summary>
        /// 添加【按键设置】行(面板)
        /// </summary>
        private void AddPanelSettionRow()
        {
            //必须是河东设备,必须是面板,并且有干接点才行
            if (deviceEnumInfo.IsHdlDevice == false || deviceEnumInfo.BeloneType != DeviceBeloneType.A按键面板 || listDeviceType.Contains(DeviceType.OnOffSwitch) == false)
            {
                return;
            }
            //按键设置
            string caption = Language.StringByID(R.MyInternationalizationString.uPanelSettion);
            var btnFunction = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(btnFunction);
            btnFunction.AddLeftCaption(caption, 600);
            //向右图标
            btnFunction.AddRightArrow();
            //底线
            btnFunction.AddBottomLine();
            btnFunction.ButtonClickEvent += (sender, e) =>
            {
                var form = new DevicePanel.PanelButtonSettionForm();
                form.AddForm(listNewDevice[0]);
            };
        }
 
        #region ■ 简约环境(面板)_____________________
 
        /// <summary>
        /// 添加【按键设置】行简约环境(面板)
        /// </summary>
        private void AddSimplePanelSettionRow()
        {
            //按键设置
            string caption = Language.StringByID(R.MyInternationalizationString.uPanelSettion);
            var btnFunction = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(btnFunction);
            btnFunction.AddLeftCaption(caption, 600);
            //向右图标
            btnFunction.AddRightArrow();
            //底线
            btnFunction.AddBottomLine();
            btnFunction.ButtonClickEvent += (sender, e) =>
            {
                //简约环境面板的按键配置
                var form = new DevicePanel.PanelSettionWithSourceForm();
                form.AddForm(listNewDevice[0]);
            };
        }
 
        #endregion
 
        #endregion
 
        #region ■ 按键设置(方悦)_____________________
 
        /// <summary>
        /// 添加【按键设置】行(方悦)
        /// </summary>
        private bool AddFangyuePanelSettionRow()
        {
            if (deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueTwo
                || deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueFour
                || deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueEight
                || deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueEnvironment
                || deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueFreshAir)
            {
                //按键设置
                string caption = Language.StringByID(R.MyInternationalizationString.uPanelSettion);
                var btnFunction = new FrameRowControl(listview.rowSpace / 2);
                listview.AddChidren(btnFunction);
                btnFunction.AddLeftCaption(caption, 600);
                //向右图标
                btnFunction.AddRightArrow();
                //底线
                btnFunction.AddBottomLine();
                btnFunction.ButtonClickEvent += (sender, e) =>
                {
                    if (deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueTwo
                    || deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueFour
                    || deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueEight)
                    {
                        //方悦按键面板[单开双控/双开四控/四开八控]配置
                        var form = new DevicePanel.PanelFangyueButtonSettionForm();
                        form.AddForm(listNewDevice[0]);
                    }
                    else if (deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueEnvironment || deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueFreshAir)
                    {
                        //方悦环境面板的按键配置&方悦新风面板的按键配置
                        var form = new DevicePanel.PanelSettionWithSourceForm();
                        form.AddForm(listNewDevice[0]);
                    }
                    else
                    {
                        var form = new DevicePanel.PanelFangyueButtonSettionForm();
                        form.AddForm(listNewDevice[0]);
                    }
                };
                return true;
            }
            return false;
        }
 
        #endregion
 
        #region ■ 干接点设置(干接点)_________________
 
        /// <summary>
        /// 添加【干接点设置】行
        /// </summary>
        private void AddDryContactSettionRow()
        {
            if (this.listDeviceType.Contains(DeviceType.OnOffSwitch) == false)
            {
                //必须有一路回路是OnOffSwitch才行,面板的干接点的话,使用的是别的菜单
                return;
            }
            if (deviceEnumInfo.IsHdlDevice == true && deviceEnumInfo.BeloneType == DeviceBeloneType.A按键面板)
            {
                //河东的面板的话,它有自己的配置界面,
                //如果是第三方设备的话,使用普通干接点界面(它能使用绑定功能,无背光设置)
                return;
            }
 
            //干接点设置
            string caption = Language.StringByID(R.MyInternationalizationString.uDryContactSettion);
            var btnBackLight = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(btnBackLight);
            btnBackLight.AddLeftCaption(caption, 600);
            //向右图标
            btnBackLight.AddRightArrow();
            //底线
            btnBackLight.AddBottomLine();
            btnBackLight.ButtonClickEvent += (sender, e) =>
            {
                var form = new DeviceDryContactSettionForm();
                form.AddForm(listNewDevice[0]);
            };
        }
 
        #endregion
 
        #region ■ 工作模式(pir传感器专用)____________
 
        /// <summary>
        /// 添加【工作模式】行(pir传感器专用)
        /// </summary>
        private void AddPirSensorWorkModeRow()
        {
            if (this.deviceEnumInfo.ConcreteType != DeviceConcreteType.Sensor_Pir
                || deviceEnumInfo.IsHdlDevice == false)
            {
                return;
            }
            //工作模式
            string caption = Language.StringByID(R.MyInternationalizationString.uWorkMode);
            var btnFunction = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(btnFunction);
            btnFunction.AddLeftCaption(caption, 600);
            //向右图标
            btnFunction.AddRightArrow();
            //底线
            btnFunction.AddBottomLine();
            btnFunction.ButtonClickEvent += (sender, e) =>
            {
                var form = new DevicePirSensor.PirSensorWorkModeMenuForm();
                form.AddForm((IASZone)this.listNewDevice[0]);
            };
        }
 
        #endregion;
 
        #region ■ 绑定目标(pir传感器专用)____________
 
        /// <summary>
        /// 添加【绑定目标】行(pir传感器专用)
        /// </summary>
        private void AddPirSensorBindRow()
        {
            if (this.deviceEnumInfo.ConcreteType != DeviceConcreteType.Sensor_Pir)
            {
                return;
            }
            //绑定目标
            string caption = Language.StringByID(R.MyInternationalizationString.uBindTargets);
            var btnFunction = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(btnFunction);
            btnFunction.AddLeftCaption(caption, 600);
            //向右图标
            btnFunction.AddRightArrow();
            //底线
            btnFunction.AddBottomLine();
            btnFunction.ButtonClickEvent += (sender, e) =>
            {
                var form = new DevicePirSensor.PirSensorBindTargetSettionForm();
                form.AddForm((IASZone)this.listNewDevice[0]);
            };
        }
 
        #endregion;
 
        #region ■ 功能设置(通用)_____________________
 
        /// <summary>
        /// 添加【功能设置】行
        /// </summary>
        private void AddFunctionSettionRow()
        {
            //只有回路数大于1才能有这个菜单
            if (HdlDeviceCommonLogic.Current.GetDevicesCountByMac(listNewDevice[0].DeviceAddr) == 1)
            {
                //新风小模块只有一个回路,但要求新风小模块的新风有功能设置
                if (deviceEnumInfo.ConcreteType != DeviceConcreteType.Relay_FangyueFreshAirModul)
                {
                    return;
                }
            }
            if (deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueEnvironment
                || deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueFreshAir)
            {
                //环境面板没有功能设置
                return;
            }
 
            //2020.03.06新追加:如果全部都是干接点的话,也不能有这个东西
            int dryContactCount = 0;
            for (int i = 0; i < listNewDevice.Count; i++)
            {
                if (listNewDevice[i].Type == DeviceType.OnOffSwitch)
                {
                    dryContactCount++;
                }
            }
            if (listNewDevice.Count == dryContactCount)
            {
                //这个设备全是干接点
                return;
            }
 
            //功能设置
            string caption = Language.StringByID(R.MyInternationalizationString.uFunctionSettingUp);
            var btnFunction = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(btnFunction);
            btnFunction.AddLeftCaption(caption, 600);
            //向右图标
            btnFunction.AddRightArrow();
            //底线
            btnFunction.AddBottomLine();
            btnFunction.ButtonClickEvent += (sender, e) =>
            {
                //方悦面板
                if (deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueTwo
                    || deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueFour
                    || deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueEight)
                {
                    var form = new DevicePanel.PanelFangyueFunctionSettionForm();
                    form.AddForm(listNewDevice[0], deviceEnumInfo);
                }
                //简约多功能面板的按键配置
                else if (deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_SimpleMultifunction)
                {
                    foreach (var dev in listNewDevice)
                    {
                        if (dev.Type == DeviceType.OnOffOutput && dev.DeviceEpoint == 62)
                        {
                            var form = new DeviceFunctionSettionForm();
                            form.AddForm(dev, true);
                            break;
                        }
                    }
 
                }
                //河东的面板设备
                else if (deviceEnumInfo.BeloneType == DeviceBeloneType.A按键面板 && deviceEnumInfo.IsHdlDevice == true)
                {
                    var form = new DevicePanel.PanelFunctionSettionForm();
                    form.AddForm(listNewDevice[0]);
                }
                else
                {
                    var form = new DeviceFunctionSettionForm();
                    form.AddForm(listNewDevice[0], false);
                }
            };
        }
 
        /// <summary>
        /// 添加传感器【功能设置】行
        /// </summary>
        private void AddFunctionSettionRowPM()
        {
            //功能设置
            string caption = Language.StringByID(R.MyInternationalizationString.uFunctionSettingUp);
            var btnFunction = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(btnFunction);
            btnFunction.AddLeftCaption(caption, 600);
            //向右图标
            btnFunction.AddRightArrow();
            //底线
            btnFunction.AddBottomLine();
            btnFunction.ButtonClickEvent += (sender, e) =>
            {
                var form = new DeviceFunctionSettionForm();
                form.AddForm(listNewDevice[0], false);
            };
        }
 
        #endregion;
 
        #region ■ 方向与限位(窗帘)___________________
 
        /// <summary>
        /// 添加【方向与限位】行(窗帘专用)
        /// </summary>
        private void AddDirectionAndLimitRow()
        {
            if (deviceEnumInfo.BeloneType != DeviceBeloneType.A窗帘)
            {
                return;
            }
            var deviceCurtain = (Rollershade)this.listNewDevice[0];
            if (deviceCurtain.WcdType != 4 && deviceCurtain.WcdType != 0)
            {
                //开合帘,卷帘专用
                return;
            }
 
            //方向与限位
            string caption = Language.StringByID(R.MyInternationalizationString.uDirectionAndLimit);
            var btnFunction = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(btnFunction);
            btnFunction.AddLeftCaption(caption, 600);
            //向右图标
            btnFunction.AddRightArrow();
            //底线
            btnFunction.AddBottomLine();
            btnFunction.ButtonClickEvent += (sender, e) =>
            {
                if (deviceCurtain.WcdType == 4)
                {
                    var form = new DeviceCurtain.AutoOpenDirectionAndLimitSettionForm();
                    form.AddForm(deviceCurtain);
                }
                else if (deviceCurtain.WcdType == 0)
                {
                    var form = new DeviceCurtain.SiphonateDirectionAndLimitSettionForm();
                    form.AddForm(deviceCurtain);
                }
            };
        }
 
        #endregion;
 
        #region ■ 手拉控制(开合帘)___________________
 
        /// <summary>
        /// 添加【手拉控制】行(开合帘专用)
        /// </summary>
        private void AddHandPullControlRow()
        {
            if (deviceEnumInfo.BeloneType != DeviceBeloneType.A窗帘)
            {
                return;
            }
            var deviceCurtain = (Rollershade)this.listNewDevice[0];
            if (deviceCurtain.WcdType != 4)
            {
                //开合帘专用
                return;
            }
 
            //手拉控制
            string caption = Language.StringByID(R.MyInternationalizationString.uHandPullControl);
            var btnFunction = new FrameRowControl(listview.rowSpace / 2);
            btnFunction.UseClickStatu = false;
            listview.AddChidren(btnFunction);
            btnFunction.AddLeftCaption(caption, 600);
            //开关图标
            var btnSwitch = btnFunction.AddMostRightSwitchIcon();
            //底线
            btnFunction.AddBottomLine();
            btnSwitch.ButtonClickEvent += (sender, e) =>
            {
                //切换模式
                bool statu = !btnSwitch.IsSelected;
                var result = HdlDeviceCurtainLogic.Current.SetHandPullControl(deviceCurtain, statu);
                if (result == true)
                {
                    btnSwitch.IsSelected = statu;
                }
            };
            //查看模板时,不允许编辑
            if (Common.Config.Instance.Home.IsShowTemplate == true)
            {
                btnSwitch.CanClick = false;
                btnSwitch.IsSelected = HdlTemplateDeviceDataLogic.Current.GetCurtainHandPullControl(deviceCurtain);
                return;
            }
            //如果是虚拟住宅
            if (Common.Config.Instance.Home.IsVirtually == true)
            {
                btnSwitch.IsSelected = HdlTemplateDeviceDataLogic.Current.GetCurtainHandPullControl(deviceCurtain);
                return;
            }
 
            //添加属性上报监听
            string mainkeys = HdlDeviceCommonLogic.Current.GetDeviceMainKeys(this.listNewDevice[0]);
            HdlGatewayReceiveLogic.Current.AddAttributeEvent("HandPullControl", ReceiveComandDiv.A设备属性上报, (device) =>
            {
                string checkKey = HdlDeviceCommonLogic.Current.GetDeviceMainKeys(device);
                if (mainkeys != checkKey || device.DeviceStatusReport.CluterID != 258)
                {
                    return;
                }
                foreach (var attriBute in device.DeviceStatusReport.AttriBute)
                {
                    if (attriBute.AttributeId == 23)
                    {
                        //手拉控制
                        if (0 < (attriBute.AttriButeData & 0x04))
                        {
                            HdlThreadLogic.Current.RunMain(() =>
                            {
                                btnSwitch.IsSelected = true;
                            });
                        }
                    }
                }
            });
            //发送命令
            deviceCurtain.ReadCurtainDirectionAndMode();
        }
 
        #endregion;
 
        #region ■ 室内机设置(空调)___________________
 
        /// <summary>
        /// 添加【室内机设置】行(空调专用)
        /// </summary>
        private void AddIndoorUnitSettionRow()
        {
            if (this.deviceEnumInfo.ConcreteType != DeviceConcreteType.AirConditioner_ZbGateway
                || this.listNewDevice[0] is OTADevice)//追加:单纯只有200端点的话,不显示这个菜单
            {
                return;
            }
 
            //室内机设置
            string caption = Language.StringByID(R.MyInternationalizationString.uIndoorUnitSettion);
            var btnFunction = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(btnFunction);
            btnFunction.AddLeftCaption(caption, 600);
            //向右图标
            btnFunction.AddRightArrow();
            //底线
            btnFunction.AddBottomLine();
            btnFunction.ButtonClickEvent += (sender, e) =>
            {
                var form = new DeviceAirConditioner.IndoorUnitListForm();
                form.AddForm(listNewDevice[0].DeviceAddr);
            };
        }
        #endregion
 
        #region ■ 简约多功能面板用___________________
        /// <summary>
        /// 添加【绑定目标】行
        /// </summary>
        private void AddIBindRow(string deviceMac)
        {
            string bindTargets = Language.StringByID(R.MyInternationalizationString.uBindTargets);
            var btnBindTargets = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(btnBindTargets);
            btnBindTargets.AddLeftCaption(bindTargets, 600);
            //向右图标
            btnBindTargets.AddRightArrow();
            //底线
            btnBindTargets.AddBottomLine();
            btnBindTargets.ButtonClickEvent += (sender, e) =>
            {
                var dev = HdlDeviceCommonLogic.Current.GetDevice(deviceMac, 32);//简约面板随便一个按键来获取设备
                if (dev != null)
                {
                    var curControlDev = dev as Panel;
                    var simpleMutilfunctionTargetsPage = new Shared.Phone.UserCenter.DeviceBind.PanelSimpleMutilfunctionTargetsForm(curControlDev);
                    Shared.Phone.UserView.HomePage.Instance.AddChidren(simpleMutilfunctionTargetsPage);
                    Shared.Phone.UserView.HomePage.Instance.PageIndex += 1;
                    simpleMutilfunctionTargetsPage.Show();
                }
            };
        }
 
        #region ■ 接近感应___________________________
 
        /// <summary>
        /// 接近感应行
        /// </summary>
        private void AddProximitySensorsRow(string deviceMac)
        {
            string proximity = Language.StringByID(R.MyInternationalizationString.ProximitySensors);
            var proximitySensors = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(proximitySensors);
            proximitySensors.AddLeftCaption(proximity, 400);
 
            //接近感应
            proximitySensors.AddLeftCaption(Language.StringByID(R.MyInternationalizationString.ProximitySensors), 400);
            //开关控件
            var btnSwitch = proximitySensors.AddMostRightSwitchIcon();
            //底线
            proximitySensors.AddBottomLine();
 
            btnSwitch.ButtonClickEvent +=async (sender, e) =>
            {
                btnSwitch.IsSelected = !btnSwitch.IsSelected;
                proximitySensorsInfo.enable = btnSwitch.IsSelected;
 
                //简约面板随便一个回路来获取设备信息
                var dev = HdlDeviceCommonLogic.Current.GetDevice(deviceMac, 62);
                if (dev != null)
                {
                    var key = new ZigBee.Device.Panel();
                    key.DeviceAddr = deviceMac;
                    key.CurrentGateWayId = dev.CurrentGateWayId;
                    SetProximitySensor(key); 
                }
            };
            if (proximitySensorsInfo.enable == true)
            {
                btnSwitch.IsSelected = true;
            }
        }
        #endregion
 
        #region ■ 数据矫正_________________________ 
        /// <summary>
        ///  数据矫正行
        /// </summary>
        private void DataCorrectionRow(string deviceMac)
        {
            //数据矫正
            var rowLight = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(rowLight);
            rowLight.AddLeftCaption(Language.StringByID(R.MyInternationalizationString.DataCorrection), 600);
            //底线
            rowLight.AddBottomLine();
            //右箭头
            rowLight.AddRightArrow();
            rowLight.ButtonClickEvent += (sender, e) =>
            {
                var dev = HdlDeviceCommonLogic.Current.GetDevice(deviceMac, 62);//简约面板随便一个回路来获取设备
                var device = new CommonDevice();
                if (dev != null)
                {
                    device.CurrentGateWayId = dev.CurrentGateWayId;
                }
                device.DeviceAddr = deviceMac;
                device.DeviceEpoint = 65;
                var form = new Shared.Phone.UserCenter.DevicePanel.DataCorrectionForm();
                form.AddForm(device);
            };
        }
        #endregion
 
        /// <summary>
        ///  湿度来源行
        /// </summary>
        private void AddHumiditySourceRow(string deviceMac)
        {
            //湿度
            var rowHumidity = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(rowHumidity);
            rowHumidity.AddLeftCaption(Language.StringByID(R.MyInternationalizationString.HumiditySource), 600);
            //底线
            rowHumidity.AddBottomLine();
            //右箭头
            rowHumidity.AddRightArrow();
            var msg = Language.StringByID(R.MyInternationalizationString.nothing);
            if (!string.IsNullOrEmpty(bindHumidityName))
            {
                msg = bindHumidityName;
            }
            var btnHumidityStatu = rowHumidity.AddMostRightView(msg, 700);
            rowHumidity.ButtonClickEvent += (sender, e) =>
            {
 
                var dev = HdlDeviceCommonLogic.Current.GetDevice(deviceMac, 62);//简约面板随便一个回路来获取设备
                var device = new CommonDevice();
                if (dev != null)
                {
                    device.CurrentGateWayId = dev.CurrentGateWayId;
                }
                device.Type = DeviceType.OnOffSwitch;
                device.DeviceAddr = deviceMac;
                device.DeviceEpoint = 1;//能绑定湿度的回路
                var paneTargetsBaseFormp = new PaneTargetsBaseForm(device, bindHumidityDev, BindInfo.BindType.Humidity);
                Shared.Phone.UserView.HomePage.Instance.AddChidren(paneTargetsBaseFormp);
                Shared.Phone.UserView.HomePage.Instance.PageIndex += 1;
                paneTargetsBaseFormp.Show();
                paneTargetsBaseFormp.actionHumidityTarget += (bindName) =>
                {
                    HdlThreadLogic.Current.RunMain(() =>
                    {
                        if (string.IsNullOrEmpty(bindName))
                        {
                            btnHumidityStatu.Text = Language.StringByID(R.MyInternationalizationString.nothing);
                        }
                        else
                        {
                            btnHumidityStatu.Text = bindName;
                        }
                    });
                };
            };
        }
 
        /// <summary>
        ///  温度来源行
        /// </summary>
        private void AddTemperatureSensorRow(string deviceMac)
        {
            //温度来源
            var rowTemPerature = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(rowTemPerature);
            rowTemPerature.AddLeftCaption(Language.StringByID(R.MyInternationalizationString.TemperatureSource), 600);
            //底线
            rowTemPerature.AddBottomLine();
            //右箭头
            rowTemPerature.AddRightArrow();
            var msg = Language.StringByID(R.MyInternationalizationString.nothing);
            if (!string.IsNullOrEmpty(bindTemperatureName))
            {
                msg = bindTemperatureName;
            }
            var btnTemperatureStatu = rowTemPerature.AddMostRightView(msg, 700);
            rowTemPerature.ButtonClickEvent += (sender, e) =>
            {
                var dev = HdlDeviceCommonLogic.Current.GetDevice(deviceMac, 62);//简约面板随便一个回路来获取设备
                var device = new CommonDevice();
                if (dev != null)
                {
                    device.CurrentGateWayId = dev.CurrentGateWayId;
                }
                device.Type = DeviceType.OnOffSwitch;
                device.DeviceAddr = deviceMac;
                device.DeviceEpoint = 1;//能绑定温度的回路
                var paneTargetsBaseFormp = new PaneTargetsBaseForm(device, bindTemperatureDev, BindInfo.BindType.Temperature);
                Shared.Phone.UserView.HomePage.Instance.AddChidren(paneTargetsBaseFormp);
                Shared.Phone.UserView.HomePage.Instance.PageIndex += 1;
                paneTargetsBaseFormp.Show();
                paneTargetsBaseFormp.actionTemperatureTarget += (bindName) =>
                {
                    HdlThreadLogic.Current.RunMain(() =>
                    {
                        if (string.IsNullOrEmpty(bindName))
                        {
                            btnTemperatureStatu.Text = Language.StringByID(R.MyInternationalizationString.nothing);
                        }
                        else
                        {
                            btnTemperatureStatu.Text = bindName;
                        }
                    });
                };
            };
        }
 
        /// <summary>
        ///初始化数据 
        /// </summary>
        void InitBindInfo(CommonDevice curControlDev)
        {
            System.Threading.Tasks.Task.Run(async () =>
            {
                try
                {
                    Application.RunOnMainThread(() =>
                    {
                        CommonPage.Loading.Start("");
                    });
                    //读温湿度数据 
                    curControlDev.DeviceEpoint = 1;
                    var result = await GetBindName(curControlDev);
                    if (!result)
                    {
                        Application.RunOnMainThread(() =>
                        {
                            new Tip() { MaxWidth = 150, Text = Language.StringByID(R.MyInternationalizationString.GwResponseOvertime) + "(" + "5007_2" + ")", Direction = AMPopTipDirection.None, CloseTime = 1 }.Show(Common.CommonPage.Instance);
                        });
                        return;
                    }
                     
                    //2、获设备接近感应初始数据
                    //接近感应(他们说随便拿一路回路就行了)
                    proximitySensorsInfo = await HdlDevicePanelLogic.Current.GetDeviceProximitySensorsSettion(curControlDev);
                    if (proximitySensorsInfo == null)
                    {
                        proximitySensorsInfo = new Panel.PanelProximitySensorInfo();
                        //关闭进度条
                        this.CloseProgressBar(ShowReLoadMode.YES);
                        return ;
                    }
                }
                catch (Exception ex)
                {
                    var mess = ex.Message;
                }
                finally
                {
                    Application.RunOnMainThread(() =>
                    {
                        //初始化右上角菜单
                        this.InitTopRightMenu();
                        //初始化中部控件
                        this.InitMiddleFrame();
                        CommonPage.Loading.Hide();
                    });
                }
            });
        }
 
        /// <summary>
        /// 获取绑定的温湿度目标
        /// </summary>
        /// <param name="curControlDev"></param>
        /// <returns></returns>
        private async System.Threading.Tasks.Task<bool> GetBindName(CommonDevice curControlDev)
        {
            bool result = false;
            var panelBindListRes = HdlDeviceBindLogic.Current.GetDeviceBindAsync(curControlDev);
            if (panelBindListRes != null && panelBindListRes.getAllBindResponseData != null)
            {
                bindList = panelBindListRes.getAllBindResponseData.BindList;
                foreach (var bDev in bindList)
                {
                    var device = HdlDeviceCommonLogic.Current.GetDevice(bDev.BindMacAddr, bDev.BindEpoint);
                    if (device == null)
                    {
                        continue;
                    }
                    if (device.Type == DeviceType.TemperatureSensor)
                    {
                        var bD = device as TemperatureSensor;
                        if (bD.SensorDiv == 1 && bDev.BindCluster == 1026)
                        {
                            bindTemperatureName = HdlDeviceCommonLogic.Current.GetDeviceEpointName(device);
                            bindTemperatureDev = device;
                        }
                        if (bD.SensorDiv == 2 && bDev.BindCluster == 1029)
                        {
                            bindHumidityName = HdlDeviceCommonLogic.Current.GetDeviceEpointName(device);
                            bindHumidityDev = device;
                        }
                    }
                    if (device.Type == DeviceType.FreshAirHumiditySensor)
                    {
                        bindHumidityName = HdlDeviceCommonLogic.Current.GetDeviceEpointName(device);
                        bindHumidityDev = device;
                    }
                }
                result = true;
            }
            return result;
        }
         
        #region ■ 设置数据___________________________
 
        /// <summary>
        /// 设置面板接近感应数据
        /// </summary>
        private void SetProximitySensor(CommonDevice curControlDev)
        {
            System.Threading.Tasks.Task.Run(async () =>
            {
                try
                {
                    Application.RunOnMainThread(() =>
                    {
                        CommonPage.Loading.Start("");
                    });
                    //接近感应(提供设备的同事说随便一个回路就行)
                    var result = await HdlDevicePanelLogic.Current.SetProximitySensorStatus(curControlDev, proximitySensorsInfo.enable);
                    if (result == false)
                    { 
                        return;
                    }
                }
                catch (Exception ex)
                {
                    var mess = ex.Message;
                }
                finally
                {
                    Application.RunOnMainThread(() =>
                    {
                        CommonPage.Loading.Hide();
                    });
                }
            });
        }
 
        #endregion
        #endregion
 
        #region ■ 功能类型(空气开关专用)_____________
 
        /// <summary>
        /// 添加【功能类型】行(空气开关专用)
        /// </summary>
        private void AddAirSwitchFunctionTypeRow()
        {
            //2020.04.28变更:有个别设备它除了继电器回路,什么都没有了,
            //这个时候也要现实出来
            if (this.listNewDevice.Count != 1)
            {
                return;
            }
            if (this.listNewDevice[0].Type != DeviceType.OnOffOutput
                && this.listNewDevice[0].Type != DeviceType.AirSwitch)
            {
                return;
            }
            //自定义功能类型控件
            var rowFunction = new DeviceFunctionTypeRowControl(this.listNewDevice[0], listview.rowSpace / 2);
            listview.AddChidren(rowFunction);
            rowFunction.InitControl();
            //底线
            rowFunction.AddBottomLine();
            //查看模板时,不允许编辑
            if (Common.Config.Instance.Home.IsShowTemplate == true)
            {
                rowFunction.CanClick = false;
            }
        }
 
        #endregion
 
        #region ■ 通用信息___________________________
 
        /// <summary>
        /// 添加【通用信息】行
        /// </summary>
        private void AddGeneralInformationRow()
        {
            string caption = Language.StringByID(R.MyInternationalizationString.uGeneralInformation);
            var btnGeneral = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(btnGeneral);
            btnGeneral.AddLeftCaption(caption, 600);
            //向右图标
            btnGeneral.AddRightArrow();
            //底线
            btnGeneral.AddBottomLine();
            btnGeneral.ButtonClickEvent += (sender, e) =>
            {
                var form = new DeviceGeneralInformationForm();
                form.AddForm(listNewDevice[0].DeviceAddr);
            };
        }
 
        #endregion
 
        #region ■ 空调模块版本(空调专用)_____________
 
        /// <summary>
        /// 添加【空调模块版本】行(河东的中央空调)
        /// </summary>
        private void AddAirConditionerModelVersionRow()
        {
            if (this.deviceEnumInfo.ConcreteType != DeviceConcreteType.AirConditioner_ZbGateway)
            {
                //不是中央空调
                return;
            }
            string caption = Language.StringByID(R.MyInternationalizationString.uAirConditionerModelVersion);
            var rowVersion = new FrameRowControl(listview.rowSpace / 2);
            rowVersion.UseClickStatu = false;
            listview.AddChidren(rowVersion);
            rowVersion.AddLeftCaption(caption, 600);
            //版本
            this.btnAirConditionerVersion = rowVersion.AddMostRightView(string.Empty, 900);
            if (this.listNewDevice[0] is AC)
            {
                this.btnAirConditionerVersion.Text = ((AC)this.listNewDevice[0]).AcModelVersion;
            }
            //底线
            rowVersion.AddBottomLine();
 
            //获取中央空调模块的版本
            this.ReadAirConditionerVersion();
        }
 
        #endregion
 
        #region ■ 固件升级___________________________
 
        /// <summary>
        /// 添加【固件升级】行
        /// </summary>
        private void AddFirmwareUpdateRow()
        {
            //拥有200端口这个东西的时候,才会显示这一行
            var oTADevice = HdlDeviceCommonLogic.Current.GetOTADevice(listNewDevice[0].DeviceAddr);
            if (oTADevice == null)
            {
                return;
            }
 
            //固件升级
            string caption = Language.StringByID(R.MyInternationalizationString.uFirmwareUpdate);
            var rowUpDate = new FrameRowControl(listview.rowSpace / 2);
            listview.AddChidren(rowUpDate);
            rowUpDate.AddLeftCaption(caption, 600);
            //向右图标
            rowUpDate.AddRightArrow();
            //底线
            rowUpDate.AddBottomLine();
 
            //提示有新版本
            var btnNewVersion = new PicViewControl(78, 55);
            btnNewVersion.UnSelectedImagePath = "Item/NewVersion.png";
            btnNewVersion.Visible = false;
            btnNewVersion.X = Application.GetRealWidth(242);
            btnNewVersion.Y = Application.GetRealHeight(23);
            rowUpDate.AddChidren(btnNewVersion, ChidrenBindMode.BindEvent);
 
            rowUpDate.ButtonClickEvent += (sender, e) =>
            {
                if (this.deviceEnumInfo.ConcreteType != DeviceConcreteType.AirConditioner_ZbGateway)
                {
                    //这个是一般设备的升级
                    var form = new DeviceFirmwareUpdateForm();
                    form.AddForm(listNewDevice[0].DeviceAddr);
                }
                else
                {
                    //中央空调的升级的话,是特殊的
                    var form = new DeviceAirConditioner.ACZbGatewayUpdateMenuForm();
                    form.AddForm(listNewDevice[0], btnNewVersion.Visible);
                }
                btnNewVersion.Visible = false;
            };
 
            //如果当前住宅不是虚拟住宅
            if (Config.Instance.Home.IsVirtually == false
                && Config.Instance.Home.IsShowTemplate == false)
            {
                //设置设备的版本信息
                this.SetDeviceVersionInfo(btnNewVersion, oTADevice);
            }
        }
 
        /// <summary>
        /// 设置设备的版本信息
        /// </summary>
        /// <param name="btnNewVersion">有新版本的提示控件</param>
        /// <param name="oTADevice">ota设备</param>
        private void SetDeviceVersionInfo(PicViewControl btnNewVersion, OTADevice oTADevice)
        {
            HdlThreadLogic.Current.RunThread(() =>
            {
                bool receiveImageInfo = false;
                //设置设备全部的镜像信息
                string checkKey = HdlDeviceCommonLogic.Current.GetDeviceMainKeys(oTADevice.DeviceAddr, oTADevice.DeviceEpoint);
                HdlGatewayReceiveLogic.Current.AddAttributeEvent("SetDeviceVersionInfo", ReceiveComandDiv.A设备属性上报, (report) =>
                {
                    if (report.DeviceStatusReport.CluterID == (int)Cluster_ID.Ota)
                    {
                        string mainKey = HdlDeviceCommonLogic.Current.GetDeviceMainKeys(report.DeviceAddr, report.DeviceEpoint);
                        if (checkKey == mainKey)
                        {
                            //已经接收得到
                            receiveImageInfo = true;
                        }
                    }
                });
                //发送命令
                HdlDeviceAttributeLogic.Current.ReadDeviceFirmwareVersion(oTADevice);
 
                int count = 5;
                while (receiveImageInfo == false && count > 0)
                {
                    //等待设备镜像的反馈
                    System.Threading.Thread.Sleep(300);
                    count--;
                }
                //移除事件
                HdlGatewayReceiveLogic.Current.RemoveEvent("SetDeviceVersionInfo");
 
                oTADevice = HdlDeviceCommonLogic.Current.GetOTADevice(listNewDevice[0].DeviceAddr);
                //添加升级固件信息(成不成功都无所谓)
                var result = HdlFirmwareUpdateLogic.Current.AddFirmwareVersionInfo(FirmwareLevelType.A设备, oTADevice.HwVersion.ToString(), oTADevice.ImgTypeId.ToString());
 
                //获取设备最新版本
                var deviceFirmware = HdlFirmwareUpdateLogic.Current.GetFirmwareMostVersionInfo(FirmwareLevelType.A设备,
                    oTADevice.HwVersion.ToString(),
                    oTADevice.ImgTypeId.ToString(),
                    oTADevice.ImgVersion);
 
                if (deviceFirmware != null && deviceFirmware.FirmwareVersion > oTADevice.ImgVersion)
                {
                    HdlThreadLogic.Current.RunMain(() =>
                    {
                        if (btnNewVersion != null)
                        {
                            btnNewVersion.Visible = true;
                        }
                    }, ShowErrorMode.NO);
                }
            });
        }
 
        #endregion
 
        #region ■ 修改名字___________________________
 
        /// <summary>
        /// 设备重命名
        /// </summary>
        /// <param name="i_deviceName">deviceName.</param>
        private void DeviceReName(string i_deviceName, bool closeForm)
        {
            //修改MAC名
            string deviceName = i_deviceName.Trim();
            var result = HdlDeviceCommonLogic.Current.ReMacName(this.listNewDevice, deviceName);
            if (result == false)
            {
                return;
            }
            if (closeForm == true)
            {
                //关闭界面
                this.CloseForm();
            }
            else
            {
                //设备备注修改成功!
                string msg = Language.StringByID(R.MyInternationalizationString.uDeviceReNoteSuccess);
                this.ShowMassage(ShowMsgType.Tip, msg);
            }
        }
 
        #endregion
 
        #region ■ 右上角菜单_________________________
 
        /// <summary>
        /// 初始化右上角菜单
        /// </summary>
        private void InitTopRightMenu()
        {
            //查看模板时,不允许编辑
            if (Common.Config.Instance.Home.IsShowTemplate == true)
            {
                return;
            }
            var btnIcon = new MostRightIconControl(69, 69);
            btnIcon.UnSelectedImagePath = "Item/More.png";
            topFrameLayout.AddChidren(btnIcon);
            btnIcon.InitControl();
            btnIcon.ButtonClickEvent += ((sender, e) =>
            {
                //显示右上角菜单界面
                this.ShowTopRightMenu();
            });
        }
 
        /// <summary>
        /// 显示右上角菜单界面
        /// </summary>
        private void ShowTopRightMenu()
        {
            //检测此回路是否拥有定位功能(拿端点最小的那个回路去定位)
            bool canTest = HdlDeviceCommonLogic.Current.DeviceIsCanFixedPosition(listNewDevice[0]);
 
            TopRightMenuControl frame = null;
 
            if (deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_SimpleMultifunction)
            {
                frame = new TopRightMenuControl(3, 1);
            }
            else
            {
                frame = new TopRightMenuControl(canTest == true ? 2 : 1, 1);
            }
 
            string deviceMenu = string.Empty;
            if (canTest == true)
            {
                //定位
                deviceMenu = Language.StringByID(R.MyInternationalizationString.uFixedPosition);
                frame.AddRowMenu(deviceMenu, "Item/FixedPosition.png", "Item/FixedPositionSelected.png", () =>
                {
                    //发送定位功能
                    HdlDeviceCommonLogic.Current.SetFixedPositionCommand(listNewDevice[0], true);
                });
            }
 
            //删除
            deviceMenu = Language.StringByID(R.MyInternationalizationString.uDelete);
            frame.AddRowMenu(deviceMenu, "Item/DeleteIcon2.png", "Item/DeleteIcon2Selected.png", () =>
            {
                //如果当前住宅是虚拟住宅,此功能无效
                if (Common.Config.Instance.Home.IsVirtually == true)
                {
                    return;
                }
                //确认删除该设备及功能?
                string msg = Language.StringByID(R.MyInternationalizationString.uDeleteDeviceMsg);
                this.ShowMassage(ShowMsgType.Confirm, msg, () =>
                {
                    //删除指定设备
                    this.DoDeleteDevice();
                });
            });
 
            //同步
            deviceMenu = Language.StringByID(R.MyInternationalizationString.Synchronization);
            if (HdlDeviceCommonLogic.Current.DeviceIsCanFixedPosition(listNewDevice[0]))
            {
                frame.AddRowMenu(deviceMenu, "", "Item/SynchronizationSelected.png", () =>
                {
                    //如果当前住宅是虚拟住宅,此功能无效
                    if (Common.Config.Instance.Home.IsVirtually == true)
                    {
                        return;
                    }
 
                    //同步指定设备
                    this.SynchronizationDevice();
                });
            }
 
        }
 
        /// <summary>
        /// 删除指定设备
        /// </summary>
        private void DoDeleteDevice()
        {
            HdlThreadLogic.Current.RunThread(async () =>
            {
                //打开进度条
                this.ShowProgressBar();
 
                //删除设备
                bool result = await HdlDeviceCommonLogic.Current.DeleteDevice(listNewDevice);
                //关闭进度条
                this.CloseProgressBar();
                if (result == false)
                {
                    return;
                }
                HdlThreadLogic.Current.RunMain(() =>
                {
                    //关闭界面
                    this.CloseForm();
                });
            });
        }
 
        /// <summary>
        /// 同步指定设备
        /// </summary>
        private void SynchronizationDevice()
        {
            HdlThreadLogic.Current.RunThread(async () =>
            {
                //打开进度条
                this.ShowProgressBar();
 
                //同步设备
                bool result = await HdlDeviceCommonLogic.Current.SynchronizationDevice(listNewDevice);
                //关闭进度条
                this.CloseProgressBar();
                if (result == false)
                {
                    return;
                }
            });
        }
        #endregion
 
        #region ■ 关闭界面___________________________
 
        /// <summary>
        /// 画面关闭
        /// </summary>
        public override void CloseFormBefore()
        {
            HdlGatewayReceiveLogic.Current.RemoveEvent("HandPullControl");
            HdlGatewayReceiveLogic.Current.RemoveEvent("SetDeviceVersionInfo");
 
            //设备新入网
            if (HdlFormLogic.Current.IsFormOpen("AddDeviceTypeListForm") == true)
            {
                this.LoadFormMethodByName("DeviceListMainForm", "RefreshDeviceRow", new object[] { listNewDevice[0].DeviceAddr });
            }
 
            base.CloseFormBefore();
        }
 
        #endregion
 
        #region ■ 硬件信息___________________________
 
        /// <summary>
        /// 重新获取硬件信息(false:不需要获取,true:需要获取)
        /// </summary>
        private bool RefreshHardFirmwareInfo()
        {
            if (listNewDevice[0].DriveCode > 0 || Common.Config.Instance.Home.IsShowTemplate == true)
            {
                //虚拟设备没有这种操作
                return false;
            }
            //重新获取硬件信息
            HdlDeviceAttributeLogic.Current.ReadDeviceAllHardFirmwareInfo(listNewDevice[0]);
            //获取设备的固定属性
            return HdlDeviceAttributeLogic.Current.ReadDeviceAllFixedAttribute(listNewDevice[0]);
        }
 
        #endregion
 
        #region ■ 界面重新激活事件___________________
 
        /// <summary>
        /// 自身的上层界面关闭后,它自身处于最上层时,触发的事件
        /// </summary>
        public override int FormActionAgainEvent()
        {
            //重新获取中央空调模块的版本
            this.ReadAirConditionerVersion();
 
            return 0;
        }
 
        #endregion
 
        #region ■ 一般方法___________________________
 
        /// <summary>
        /// 获取中央空调模块的版本
        /// </summary>
        private void ReadAirConditionerVersion()
        {
            if (this.btnAirConditionerVersion == null)
            {
                return;
            }
            //如果是虚拟住宅或者展示模板的话
            if (Config.Instance.Home.IsShowTemplate == true || Config.Instance.Home.IsVirtually == true)
            {
                return;
            }
 
            bool notVersion = true;
            if (this.listNewDevice[0] is AC)
            {
                notVersion = ((AC)this.listNewDevice[0]).AcModelVersion == string.Empty;
            }
            if (notVersion == true)
            {
                //获取中
                btnAirConditionerVersion.Text = Language.StringByID(R.MyInternationalizationString.uGetting);
            }
            HdlThreadLogic.Current.RunThread(async () =>
            {
                //读取空调模块版本
                var result = await HdlDeviceAirConditionerLogic.Current.ReadACFirewareVersionAsync(listNewDevice[0]);
                if (result == null || result.readACFirewareVersionResponData == null || result.readACFirewareVersionResponData.Status != 0)
                {
                    if (notVersion == true)
                    {
                        //获取失败
                        HdlThreadLogic.Current.RunMain(() =>
                        {
                            btnAirConditionerVersion.Text = Language.StringByID(R.MyInternationalizationString.uGettingFail);
                        });
                    }
                    return;
                }
                HdlThreadLogic.Current.RunMain(() =>
                {
                    string strVersion = result.readACFirewareVersionResponData.FirewareVersion.Replace("-", string.Empty);
                    if (this.listNewDevice[0] is AC)
                    {
                        ((AC)this.listNewDevice[0]).AcModelVersion = strVersion;
                        this.listNewDevice[0].ReSave();
                    }
                    btnAirConditionerVersion.Text = strVersion;
                });
            });
        }
 
        /// <summary>
        /// 检测能否显示功能设置的菜单
        /// </summary>
        /// <returns></returns>
        private bool CheckCanShowFunctionSettionRow()
        {
            //方悦新风面板没有功能设置
            if (deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FangyueFreshAir
                || deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_FourButtonScene
                || deviceEnumInfo.ConcreteType == DeviceConcreteType.ButtonPanel_TwoButtonCurtain)
            {
                return false;
            }
            return true;
        }
 
        #endregion
    }
}