From a7debf97f52b5f473c3316ecd06bf48f44b65406 Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期三, 09 八月 2023 18:03:04 +0800 Subject: [PATCH] 温度类型,炫彩起始颜色 --- HDL_ON/UI/UI2/FuntionControlView/Light/RGBPageBLL.cs | 25 +++++++++++++++++++++---- 1 files changed, 21 insertions(+), 4 deletions(-) diff --git a/HDL_ON/UI/UI2/FuntionControlView/Light/RGBPageBLL.cs b/HDL_ON/UI/UI2/FuntionControlView/Light/RGBPageBLL.cs index d54d93e..224371b 100644 --- a/HDL_ON/UI/UI2/FuntionControlView/Light/RGBPageBLL.cs +++ b/HDL_ON/UI/UI2/FuntionControlView/Light/RGBPageBLL.cs @@ -58,6 +58,20 @@ { bodyView.btnCurColor.BorderColor = 0x00000000; } + try + { + var colorfulState = updateTemp.GetAttribute(FunctionAttributeKey.Colorful); + if (colorfulState != null) + { + if(bodyView.btnColorfulSwitch!= null) + { + bodyView.btnColorfulSwitch.IsSelected = colorfulState.curValue.ToString() == "on"; + } + } + }catch(Exception ex) + { + MainPage.Log($"鏇存柊RGB 鐐僵寮�鍏崇姸鎬佸紓甯�:{ex.Message}"); + } } } catch (Exception ex) @@ -88,7 +102,7 @@ /// </summary> void LoadColorChangeEvent() { - if (!function.online) + if (!function.isOnline()) { new Tip() { @@ -200,7 +214,7 @@ dimmerBar.OnStopTrackingTouchEvent = (sender, e) => { - if (!function.online) + if (!function.isOnline()) { new Tip() { @@ -217,7 +231,7 @@ Control.Ins.SendWriteCommand(function, d); }; - if (function.online) + if (function.isOnline()) { dimmerBar.OnStartTrackingTouchEvent = (sender, e) => { @@ -270,6 +284,9 @@ barFadeTime.OnStopTrackingTouchEvent = (sender, e) => { function.SetAttrState(FunctionAttributeKey.FadeTime, e.ToString()); + var d = new System.Collections.Generic.Dictionary<string, string>(); + d.Add(FunctionAttributeKey.FadeTime, e.ToString()); + Control.Ins.SendWriteCommand(function, d); function.SaveFunctionFile(); }; } @@ -318,7 +335,7 @@ { btnRestoredPoint.MouseUpEventHandler = (sender, e) => { - if (!function.online) + if (!function.isOnline()) { return; } -- Gitblit v1.8.0