| | |
| | | { |
| | | 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) |
| | |
| | | //当前点击的【点】是否正确 |
| | | bool pointIsRight = false; |
| | | //圆的半径(考虑边界,需要设置它的半径比较小一点) |
| | | int circleR = colorPicker.Width / 2 - Application.GetRealWidth(12); |
| | | int circleR = colorPicker.Width / 2 - Application.GetRealWidth(2); |
| | | |
| | | colorPicker.ColorChaged += (sender2, e2) => { |
| | | if (function.trait_on_off.curValue.ToString() == "off" || pointIsRight == false) |
| | |
| | | { |
| | | //当鼠标点下事件处理 |
| | | colorPicker.MouseDownEventHandler(sender, e); |
| | | //if (function.trait_on_off.curValue.ToString() == "off") |
| | | //{ |
| | | // return; |
| | | //} |
| | | //pointIsRight = this.CheckPoint(circleR, colorPicker.Width / 2, colorPicker.Height / 2, (int)e.X, (int)e.Y); |
| | | //if (pointIsRight == false) |
| | | //{ |
| | | // //点的区域不是圆盘内 |
| | | // return; |
| | | //} |
| | | ////显示白点 |
| | | //btnWhiteRound.X = (int)e.X - btnWhiteRound.Width / 2; |
| | | //btnWhiteRound.Y = (int)e.Y - btnWhiteRound.Height / 2; |
| | | //if (btnWhiteRound.Visible == false) |
| | | //{ |
| | | // btnWhiteRound.Visible = true; |
| | | //} |
| | | //btnCurColor.BackgroundColor = (uint)(0xFF000000 + lightTemp.GetRGBcolor(function)); |
| | | |
| | | }; |
| | | |
| | | var colorChangeEvent = new System.Threading.Thread(() => { |
| | |
| | | lightTemp.SetRGBcolor(lastColor, function); |
| | | System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>(); |
| | | d.Add(FunctionAttributeKey.RGB, lightTemp.GetRGBcolorString(function)); |
| | | d.Add(FunctionAttributeKey.Brightness, dimmerBar.Progress.ToString()); |
| | | Control.Ins.SendWriteCommand(function, d,false,0); |
| | | break; |
| | | } |
| | |
| | | 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(); |
| | | }; |
| | | } |
| | |
| | | function.trait_on_off.curValue = btnSwitch.IsSelected ? "on" : "off"; |
| | | System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>(); |
| | | d.Add(FunctionAttributeKey.OnOff, function.trait_on_off.curValue.ToString()); |
| | | if (function.GetAttribute(FunctionAttributeKey.FadeTime) != null) |
| | | { |
| | | d.Add(FunctionAttributeKey.FadeTime, barFadeTime.Progress.ToString()); |
| | | } |
| | | if (btnSwitch.IsSelected) |
| | | { |
| | | if(function.lastBrightness == 0) |