From fba3a6c55c4de790eaeee55f9897d668bb36dbb8 Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期四, 13 十月 2022 13:55:21 +0800
Subject: [PATCH] 2022年10月13日13:55:00

---
 HDL_ON/UI/UI2/3-Intelligence/Automation/TargetDeviceFunList.cs |   47 ++++++++++++++++++++++++++++++++++++++++++-----
 1 files changed, 42 insertions(+), 5 deletions(-)

diff --git a/HDL_ON/UI/UI2/3-Intelligence/Automation/TargetDeviceFunList.cs b/HDL_ON/UI/UI2/3-Intelligence/Automation/TargetDeviceFunList.cs
index eaa5c14..0246a9d 100644
--- a/HDL_ON/UI/UI2/3-Intelligence/Automation/TargetDeviceFunList.cs
+++ b/HDL_ON/UI/UI2/3-Intelligence/Automation/TargetDeviceFunList.cs
@@ -503,9 +503,14 @@
                         LogicView.FunTypeView funTypeView = new LogicView.FunTypeView();
                         funTypeView.btnText.TextID = StringId.tishiyin;
                         fLayout.AddChidren(funTypeView.FLayoutView());
+                        ///闊抽噺
+                        LogicView.FunTypeView volView = new LogicView.FunTypeView();
+                        volView.frameLayout.Y = funTypeView.frameLayout.Bottom;
+                        volView.btnText.TextID = StringId.volumeMusic; 
+                        fLayout.AddChidren(volView.FLayoutView());
 
                         ///璁惧寤舵椂iewv
-                        DelayView(fLayout, funTypeView.frameLayout.Bottom);
+                        DelayView(fLayout, volView.frameLayout.Bottom);
                         #endregion
                         #region 鐐瑰嚮浜嬩欢
                         ///鎻愮ず璇煶鐐瑰嚮浜嬩欢
@@ -549,11 +554,24 @@
 
                             });
                         };
+                        ///闊抽噺鐐瑰嚮浜嬩欢
+                        volView.btnClick.MouseUpEventHandler += (sender, e) =>
+                        {
+                            selectedState = device.spk + "_volume";
+                            new LogicView.TipPopView { }.InputBox(StringId.volumeMusic, volView.btnState.Text, (value) =>
+                            {
+                                
+                                //鐣岄潰鏄剧ず閫変腑鍊�
+                                volView.btnState.Text =value;
+                                //鏁版嵁灏佽
+                                AddDictionary("volume", value);//闊抽噺
+                            },0,100);
+                        };
 
                         if (edit)
                         {
                             //鏄剧ず缂栬緫涔嬪墠鐨勮澶囩姸鎬�
-                            GetEditDeviceState(device, index, funTypeView.btnState, null, null, null);
+                            GetEditDeviceState(device, index, funTypeView.btnState, volView.btnState, null, null);
                         }
 
                         #endregion
@@ -622,13 +640,32 @@
                                 if (!_bool)
                                 {
                                     //娌℃湁寮�鍏冲氨榛樿娣诲姞-寮�-灞炴��
-                                    Dictionary<string, string> diction = new Dictionary<string, string>();
-                                    diction.Add("key", "on_off");
-                                    diction.Add("value", "on");
+                                    Dictionary<string, string> diction = new Dictionary<string, string>
+                                    {
+                                        { "key", "on_off" },
+                                        { "value", "on" }
+                                    };
                                     dicSateteList.Add(diction);
                                 }
                             }
                             break;
+                        //闊充箰
+                        case SPK.MusicStandard:
+                        case SPK.AvMusic:
+                            {
+                                string volume = "volume";
+                                var dicObj = dicSateteList.Find((dic) => dic.ContainsValue(volume));
+                                if (dicObj != null)
+                                {
+                                    //鏈夐厤缃煶涔愰煶閲忓睘鎬э紝瑕侀噸鏂版帓鍒�,闊抽噺鍦ㄥ墠闈�
+                                    var dicList = new List<Dictionary<string, string>>();
+                                    dicList.Add(dicObj);//鍏堟坊鍔犻煶閲忓睘鎬�
+                                    var diclist = dicSateteList.FindAll((dic) => !dic.ContainsValue(volume));
+                                    dicList.AddRange(diclist);//鍐嶆坊鍔犲叾瀹冨睘鎬�
+                                    dicSateteList = dicList;//閲嶆柊璧嬪��
+                                }
+                            }
+                            break;
 
                     }
                     outputDevice.status = dicSateteList;

--
Gitblit v1.8.0