| | |
| | | //初始化桌布
|
| | | this.tableContr = new InformationEditorControl();
|
| | |
|
| | | if (this.deviceObj.Type == DeviceType.FreshAir)
|
| | | if (this.deviceObj.Type == DeviceType.FreshAir || this.deviceObj.Type == DeviceType.PMSensor)
|
| | | {
|
| | | this.listview = tableContr.InitControl(listBackControl.frameTable, Language.StringByID(R.MyInternationalizationString.uDeviceEditor), 1028);
|
| | | }
|
| | |
| | | var btnFinish = new BottomClickButton();
|
| | | btnFinish.TextID = R.MyInternationalizationString.uSave;
|
| | | bodyFrameLayout.AddChidren(btnFinish);
|
| | | btnFinish.ButtonClickEvent += async (sender, e) =>
|
| | | btnFinish.ButtonClickEvent += (sender, e) =>
|
| | | {
|
| | | //记录起当前正在操作的回路名字
|
| | | dicDeviceSaveName[nowSelectDevice.DeviceEpoint] = btnDeviceName.Text.Trim();
|
| | |
| | | if (oldName != newName)
|
| | | {
|
| | | //设备名称修改
|
| | | var result = await Common.LocalDevice.Current.ReName(device, newName);
|
| | | var result = Common.LocalDevice.Current.ReName(device, newName);
|
| | | if (result == false)
|
| | | {
|
| | | return;
|
| | |
| | | listview.AddChidren(btnDeviceName);
|
| | | btnDeviceName.InitControl();
|
| | | btnDeviceName.AddBottomLine();
|
| | | btnDeviceName.txtInput.FinishInputEvent += async () =>
|
| | | btnDeviceName.txtInput.FinishInputEvent += () =>
|
| | | {
|
| | | string oldName = Common.LocalDevice.Current.GetDeviceEpointName(nowSelectDevice);
|
| | | if (btnDeviceName.Text.Trim() == string.Empty)
|
| | |
| | | if (oldName != btnDeviceName.Text.Trim())
|
| | | {
|
| | | //设备名称修改
|
| | | var result = await Common.LocalDevice.Current.ReName(nowSelectDevice, btnDeviceName.Text.Trim());
|
| | | var result = Common.LocalDevice.Current.ReName(nowSelectDevice, btnDeviceName.Text.Trim());
|
| | | if (result == false)
|
| | | {
|
| | | return;
|
| | |
| | | frameBack.Y = Application.GetRealHeight(153);
|
| | | frameBack.Gravity = Gravity.Center;
|
| | | }
|
| | |
|
| | | //如果是PM2.5
|
| | | if (deviceObj.Type == DeviceType.PMSensor)
|
| | | {
|
| | | frame.RemoveFromParent();
|
| | | frameBorder.Y = Application.GetRealHeight(0);
|
| | | frameBorder.Height = Application.GetRealHeight(708);
|
| | | frameBack.BackgroundImagePath = "RealDevice/SensorPMTwoPointFive.png";
|
| | | frameBack.Width = this.GetPictrueRealSize(418);
|
| | | frameBack.Height = this.GetPictrueRealSize(403);
|
| | | frameBack.Y = Application.GetRealHeight(153);
|
| | | frameBack.Gravity = Gravity.Center;
|
| | | }
|
| | | }
|
| | | else
|
| | | {
|
| | |
| | | //计算真实高度
|
| | | int realHeight = this.GetPictrueRealSize(58 + 58);//上下间距
|
| | | realHeight += frameBack.ChildrenCount * this.GetPictrueRealSize(124);//圆圈高度
|
| | | realHeight += (frameBack.ChildrenCount-1) * this.GetPictrueRealSize(60);//圆圈间距
|
| | | realHeight += (frameBack.ChildrenCount - 1) * this.GetPictrueRealSize(60);//圆圈间距
|
| | | if (realHeight > frameBack.Height)
|
| | | {
|
| | | //变更高度
|
| | |
| | | //只要同一种类型的
|
| | | continue;
|
| | | }
|
| | |
|
| | | //获取设备属于【简约多功能面板】
|
| | | var deviceEnumInfo = Common.LocalDevice.Current.GetMyDeviceEnumInfo(listDevice);
|
| | | if (deviceEnumInfo.ConcreteType == Common.DeviceConcreteType.ButtonPanel_SimpleMultifunction)
|
| | | {
|
| | | if (device.Type == DeviceType.TemperatureSensor && device.DeviceEpoint == 1)
|
| | | {
|
| | | //简约多功能面板第1回路是一个绑定温湿度传感器第类型,不是真的温湿度的传感器,需要屏蔽掉
|
| | | continue;
|
| | | }
|
| | | }
|
| | |
|
| | | listRelay.Add(device);
|
| | | if (device.DeviceEpoint == deviceObj.DeviceEpoint)
|
| | | {
|
| | |
| | | }
|
| | | return listIcon;
|
| | | }
|
| | |
|
| | | #endregion
|
| | |
|
| | | #region ■ 回路选择___________________________
|