From fffd8afca5b69a592e9ba8913204f83f478e2f17 Mon Sep 17 00:00:00 2001 From: xm <1271024303@qq.com> Date: 星期三, 06 五月 2020 17:28:35 +0800 Subject: [PATCH] 增加获取颜色接口(请合并代码) --- ZigbeeApp/Shared/Phone/MainPage/ControlForm/DeviceFreshAirDetailCardForm.cs | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/MainPage/ControlForm/DeviceFreshAirDetailCardForm.cs b/ZigbeeApp/Shared/Phone/MainPage/ControlForm/DeviceFreshAirDetailCardForm.cs index 32925fc..a1a20dd 100644 --- a/ZigbeeApp/Shared/Phone/MainPage/ControlForm/DeviceFreshAirDetailCardForm.cs +++ b/ZigbeeApp/Shared/Phone/MainPage/ControlForm/DeviceFreshAirDetailCardForm.cs @@ -106,7 +106,7 @@ { if (!btnManual.IsSelected) { - this.SetFanComand(7); + this.SetFanComand(15); } }; @@ -217,7 +217,7 @@ ///3:High ///4:On ///5:Auto - /// 7:Manual + /// 15:Manual /// </summary> private void SetFanComand(int command) { @@ -247,7 +247,7 @@ case 5: FreshAirDev.SetAuto(); break; - case 7: + case 15: FreshAirDev.SetManual(); break; } @@ -295,7 +295,7 @@ this.listControl[2].IsBold = false; this.listControl[3].Visible = false; } - else if (FreshAirDev.currentFanMode == 7) + else if (FreshAirDev.currentFanMode == 15) { this.listControl[0].TextColor = ZigbeeColor.Current.XMGray3; this.listControl[0].IsBold = false; -- Gitblit v1.8.0