From 3f6685c77beeb12baf840733fb890860f4c26e7c Mon Sep 17 00:00:00 2001 From: mac <user@users-MacBook-Pro.local> Date: 星期四, 25 七月 2024 17:25:59 +0800 Subject: [PATCH] 2024年07月25日17:24:45 --- HDL_ON/UI/UI2/FuntionControlView/1ContorlPage/AcControlPage.cs | 27 ++++++++++++++++----------- 1 files changed, 16 insertions(+), 11 deletions(-) diff --git a/HDL_ON/UI/UI2/FuntionControlView/1ContorlPage/AcControlPage.cs b/HDL_ON/UI/UI2/FuntionControlView/1ContorlPage/AcControlPage.cs index 1b55639..2dc3048 100644 --- a/HDL_ON/UI/UI2/FuntionControlView/1ContorlPage/AcControlPage.cs +++ b/HDL_ON/UI/UI2/FuntionControlView/1ContorlPage/AcControlPage.cs @@ -446,7 +446,7 @@ d.Add(FunctionAttributeKey.Mode, m); Control.Ins.SendWriteCommand(device, d); dialog.Close(); - if (device.GetAttrState(FunctionAttributeKey.Mode) == "fan") + if (device.GetAttrState(FunctionAttributeKey.Mode) == "fan" || device.GetAttrState(FunctionAttributeKey.Mode) == "dry") { setTempBar.IsClickable = false; @@ -1069,18 +1069,19 @@ if (device.trait_on_off.curValue.ToString() == "on") { btnMode.IsSelected = btnSwing.IsSelected = btnWindSpeed.IsSelected = true; - setTempBar.Enable = true; + //setTempBar.Enable = true; setTempBar.ProgressBarColor = CSS_Color.MainColor; btnSwitch.IsSelected = true; - if (device.GetAttrState(FunctionAttributeKey.Mode) == "fan") - { - setTempBar.IsClickable = false; - } - else - { - setTempBar.IsClickable = true; - } + //if (device.GetAttrState(FunctionAttributeKey.Mode) == "fan") + //{ + // setTempBar.IsClickable = false; + //} + //else + //{ + // setTempBar.IsClickable = true; + //} + } else { @@ -1092,11 +1093,15 @@ setTempBar.IsClickable = false; } - if (device.GetAttrState(FunctionAttributeKey.Mode) == "dry") + if (device.GetAttrState(FunctionAttributeKey.Mode) == "dry" || device.GetAttrState(FunctionAttributeKey.Mode) == "fan") { setTempBar.IsOffline = true; setTempBar.IsClickable = false; + }else + { + setTempBar.IsOffline = false; + setTempBar.IsClickable = true; } } -- Gitblit v1.8.0