From 9f326f4000847e6167d8166fa2f6a66f53cb3734 Mon Sep 17 00:00:00 2001 From: 黄学彪 <hxb@hdlchina.com.cn> Date: 星期四, 17 十二月 2020 09:07:13 +0800 Subject: [PATCH] 新云端Ver1.3 --- ZigbeeApp/Shared/Phone/UserCenter/Residence/AddNewRoomForm.cs | 36 +++++++++++++++++------------------- 1 files changed, 17 insertions(+), 19 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/UserCenter/Residence/AddNewRoomForm.cs b/ZigbeeApp/Shared/Phone/UserCenter/Residence/AddNewRoomForm.cs index 3038ab9..753bf16 100755 --- a/ZigbeeApp/Shared/Phone/UserCenter/Residence/AddNewRoomForm.cs +++ b/ZigbeeApp/Shared/Phone/UserCenter/Residence/AddNewRoomForm.cs @@ -60,15 +60,11 @@ //鍔犱竴涓櫧鑹茶儗鏅� var frameBack1 = new FrameLayout(); - frameBack1.Height = Application.GetRealHeight(450); + frameBack1.Height = Application.GetRealHeight(750); frameBack1.Y = Application.GetRealHeight(196); frameBack1.BackgroundColor = UserCenterColor.Current.White; frameBack1.SetCornerWithSameRadius(Application.GetRealHeight(58), HDLUtils.RectCornerTopLeft | HDLUtils.RectCornerTopRight); listBackControl.frameTable.AddChidren(frameBack1); - - //鍒濆鍖栦俊鎭甯� - var tableContr = new InformationEditorControl(); - this.listview = tableContr.InitControl(listBackControl.frameTable, Language.StringByID(R.MyInternationalizationString.uInfoEditor), 1175); //鎴块棿鍥剧墖搴曢儴闃村奖 var btnShadow = new PicViewControl(853, 593); @@ -100,12 +96,13 @@ this.RoomPictrueSelect(btnPic); }; - //鍙樻洿涓�涓嬮偅涓櫧鑹茶儗鏅殑Y杞�,瀹冨埌鍥剧墖鐨勪腑闂翠綅缃� - frameBack1.Y = btnPic.Y + btnPic.Height / 2; - this.newRoom = new Common.Room(); newRoom.FloorId = this.floorKeys; newRoom.BackgroundImage = btnPic.ImagePath; + + //鍒濆鍖栦俊鎭甯� + var tableContr = new InformationEditorControl(); + this.listview = tableContr.InitControl(listBackControl.frameTable, Language.StringByID(R.MyInternationalizationString.uInfoEditor), bodyFrameLayout.Height - btnShadow.Bottom, false); //娣诲姞鍏ㄩ儴鑿滃崟 this.AddAllMenuRow(tableContr, btnPic); @@ -123,6 +120,7 @@ //銆愭埧闂村悕绉般�� var txtRoomName = new FrameCaptionInputControl(Language.StringByID(R.MyInternationalizationString.uRoomName), string.Empty, this.listview.rowSpace / 2); txtRoomName.txtInput.PlaceholderText = Language.StringByID(R.MyInternationalizationString.uPleaseInputRoomName); + txtRoomName.txtInput.MaxByte = 48;//闄愬埗鍙兘杈撳叆48涓瓧鑺� listview.AddChidren(txtRoomName); txtRoomName.InitControl(); //搴曠嚎 @@ -199,7 +197,7 @@ Shared.IO.FileUtils.WriteFileByBytes(picFullName, btnPic.ImageBytes); newRoom.BackgroundImage = picName; //澶囦唤 - Phone.UserCenter.HdlAutoBackupLogic.AddOrEditorFile(picName); + HdlBackupLogic.Current.AddOrEditorAutoBackFileStatu(picName); } newRoom.FloorId = this.floorKeys; @@ -261,7 +259,7 @@ private void ShowTemperatrueDevice(NormalViewControl btnTemper) { var listDevice = new List<ZigBee.Device.CommonDevice>(); - foreach (var device in Common.LocalDevice.Current.listAllDevice) + foreach (var device in HdlDeviceCommonLogic.Current.listAllDevice) { //鑾峰彇娓╁害浼犳劅鍣� if (device is ZigBee.Device.TemperatureSensor && ((ZigBee.Device.TemperatureSensor)device).SensorDiv == 1) @@ -285,7 +283,7 @@ btnTemper.Text = Language.StringByID(R.MyInternationalizationString.uNothing); return; } - newRoom.TemperatrueDevice = Common.LocalDevice.Current.GetDeviceMainKeys(list[0]); + newRoom.TemperatrueDevice = HdlDeviceCommonLogic.Current.GetDeviceMainKeys(list[0]); //鑾峰彇娓╁害鍊� this.GetTemperatrueValue(btnTemper, newRoom.TemperatrueDevice); }; @@ -298,7 +296,7 @@ /// <param name="deviceKey"></param> private void GetTemperatrueValue(NormalViewControl btnTemper, string deviceKey) { - var device = Common.LocalDevice.Current.GetDevice(deviceKey); + var device = HdlDeviceCommonLogic.Current.GetDevice(deviceKey); if (device == null) { return; @@ -310,7 +308,7 @@ HdlGatewayReceiveLogic.Current.RemoveEvent("TemperatrueDevice"); HdlGatewayReceiveLogic.Current.AddAttributeEvent("TemperatrueDevice", ReceiveComandDiv.A璁惧灞炴�т笂鎶�, ((report) => { - string mainKeys = Common.LocalDevice.Current.GetDeviceMainKeys(report); + string mainKeys = HdlDeviceCommonLogic.Current.GetDeviceMainKeys(report); if (newRoom.TemperatrueDevice != mainKeys || btnTemper == null || report.DeviceStatusReport.CluterID != 1026) { @@ -341,7 +339,7 @@ { //鍘昏幏鍙栬澶囧垪琛ㄧ殑淇℃伅 System.Threading.Thread.Sleep(1500); - var result = Common.LocalDevice.Current.ReadDeviceEpointDeviceInfo(device); + var result = HdlDeviceCommonLogic.Current.ReadDeviceEpointDeviceInfo(device); if (result != null) { device.AttributeStatus.Clear(); @@ -423,7 +421,7 @@ private void ShowHumidityDevice(NormalViewControl btnHumi) { var listDevice = new List<ZigBee.Device.CommonDevice>(); - foreach (var device in Common.LocalDevice.Current.listAllDevice) + foreach (var device in HdlDeviceCommonLogic.Current.listAllDevice) { //鑾峰彇婀垮害浼犳劅鍣� if (device is ZigBee.Device.TemperatureSensor && ((ZigBee.Device.TemperatureSensor)device).SensorDiv == 2) @@ -452,7 +450,7 @@ btnHumi.Text = Language.StringByID(R.MyInternationalizationString.uNothing); return; } - newRoom.HumidityDevice = Common.LocalDevice.Current.GetDeviceMainKeys(list[0]); + newRoom.HumidityDevice = HdlDeviceCommonLogic.Current.GetDeviceMainKeys(list[0]); //鑾峰彇婀垮害鍊� this.GetHumidityValue(btnHumi, newRoom.HumidityDevice); }; @@ -465,7 +463,7 @@ /// <param name="deviceKey"></param> private void GetHumidityValue(NormalViewControl btnHumi, string deviceKey) { - var device = Common.LocalDevice.Current.GetDevice(deviceKey); + var device = HdlDeviceCommonLogic.Current.GetDevice(deviceKey); if (device == null) { return; @@ -477,7 +475,7 @@ HdlGatewayReceiveLogic.Current.RemoveEvent("HumidityDevice"); HdlGatewayReceiveLogic.Current.AddAttributeEvent("HumidityDevice", ReceiveComandDiv.A璁惧灞炴�т笂鎶�, (report) => { - string mainKeys = Common.LocalDevice.Current.GetDeviceMainKeys(report); + string mainKeys = HdlDeviceCommonLogic.Current.GetDeviceMainKeys(report); if (newRoom.HumidityDevice != mainKeys || btnHumi == null || report.DeviceStatusReport.CluterID != 1029) { @@ -506,7 +504,7 @@ { //鍘昏幏鍙栬澶囧垪琛ㄧ殑淇℃伅 System.Threading.Thread.Sleep(1500); - var result = Common.LocalDevice.Current.ReadDeviceEpointDeviceInfo(device); + var result = HdlDeviceCommonLogic.Current.ReadDeviceEpointDeviceInfo(device); if (result != null) { device.AttributeStatus.Clear(); -- Gitblit v1.8.0