From f25c6122eb7e26be5e7f036cf29b9019c4953be2 Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期一, 21 十二月 2020 19:44:02 +0800
Subject: [PATCH] Merge branch 'WJC' into NewFilePath

---
 HDL_ON/UI/UI2/FuntionControlView/AC/ACPageBLL.cs |   50 +++++++++++++++++++++++++-------------------------
 1 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/HDL_ON/UI/UI2/FuntionControlView/AC/ACPageBLL.cs b/HDL_ON/UI/UI2/FuntionControlView/AC/ACPageBLL.cs
index eb16fe4..7779f67 100644
--- a/HDL_ON/UI/UI2/FuntionControlView/AC/ACPageBLL.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/AC/ACPageBLL.cs
@@ -26,18 +26,17 @@
                     updataTime = DateTime.Now;
                     bodyView.arcBar.ProgressBarColor = bodyView.aC.trait_on_off.curValue.ToString() == "on" ? CSS_Color.MainColor : CSS_Color.PromptingColor2;
                     bodyView.btnTemp.Text = uAc.trait_temp.curValue.ToString();
-                    bodyView.btnIndoorTemp.Text = Language.StringByID(StringId.IndoorTemp) + uAc.indoorTemp + "掳C";
+                    bodyView.btnIndoorTemp.Text = Language.StringByID(StringId.IndoorTemp) + Convert.ToInt32(Convert.ToDouble(uAc.trait_IndoorTemp.curValue)) + "掳C";
                     bodyView.btnMode.UnSelectedImagePath = uAc.curModeImage;
                     bodyView.btnWindSpeed.UnSelectedImagePath = uAc.curFanImage;
                     bodyView.btnSwitch.IsSelected = uAc.trait_on_off.curValue.ToString() == "on";
                     if (uAc.refreshTime.AddMilliseconds(1000) < DateTime.Now)
                     {
-                        bodyView.arcBar.Progress = Convert.ToInt32(uAc.trait_temp.curValue);
-
+                        bodyView.arcBar.Progress = Convert.ToInt32(Convert.ToDouble(uAc.trait_temp.curValue));
                     }
-                    bodyView.arcBar.ProgressBarColor = uAc.trait_on_off.curValue.ToString() == "on" ? CSS_Color.MainColor : CSS_Color.PromptingColor2;
                     bodyView.arcBar.ThumbImagePath = uAc.trait_on_off.curValue.ToString() == "on" ? "FunctionIcon/AC/DiyThumbIconOn.png" : "FunctionIcon/AC/DiyThumbIcon.png";
                     bodyView.arcBar.IsClickable = uAc.trait_on_off.curValue.ToString() == "on";
+
                 });
             }
             catch (Exception ex)
@@ -56,7 +55,6 @@
             {
                 btnFunctionName.Text = btnFunctionName_Out.Text = aC.name;
                 btnFromFloor_Out.Text = btnFromFoorAndRoom.Text = aC.GetRoomListName();
-                aC.SaveFunctionData(true);
             };
         }
 
@@ -87,10 +85,10 @@
                 temp--;
                 arcBar.Progress = temp;
                 btnTemp.Text = temp.ToString();
-                aC.trait_temp.curValue = temp;
+                aC.trait_temp.curValue = temp.ToString();
                 //Control.Send(CommandType_A.write, aC);
                 System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
-                d.Add("temp", temp.ToString());
+                d.Add(FunctionAttributeKey.SetTemp, temp.ToString());
                 Control.Ins.SendWriteCommand(aC, d);
             };
             btnPlus.MouseUpEventHandler = (sender, e) =>
@@ -103,25 +101,24 @@
                 temp++;
                 arcBar.Progress = temp;
                 btnTemp.Text = temp.ToString();
-                aC.trait_temp.curValue = temp;
+                aC.trait_temp.curValue = temp.ToString();
                 System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
-                d.Add("temp", aC.trait_temp.curValue.ToString());
+                d.Add(FunctionAttributeKey.SetTemp, aC.trait_temp.curValue.ToString());
                 Control.Ins.SendWriteCommand(aC, d);
                 //aC.GetSendJObject
 
             };
             arcBar.OnStopTrackingTouchEvent = (sender, e) =>
            {
-               aC.trait_temp.curValue = arcBar.Progress;
+               aC.trait_temp.curValue = arcBar.Progress.ToString();
                btnTemp.Text = aC.trait_temp.curValue.ToString();
-                //Control.Send(CommandType_A.write, aC);
                 System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
-               d.Add("temp", aC.trait_temp.curValue.ToString());
+               d.Add(FunctionAttributeKey.SetTemp, aC.trait_temp.curValue.ToString());
                Control.Ins.SendWriteCommand(aC, d);
            };
             arcBar.OnProgressChangedEvent = (sender, e) =>
             {
-                aC.trait_temp.curValue = e;
+                aC.trait_temp.curValue = e.ToString();
                 btnTemp.Text = aC.trait_temp.curValue.ToString();
             };
         }
@@ -143,17 +140,20 @@
             {
                 btnSwitch.IsSelected = !btnSwitch.IsSelected;
                 aC.trait_on_off.curValue = btnSwitch.IsSelected ? "on" : "off";
-                bodyView.arcBar.ProgressBarColor = aC.trait_on_off.curValue.ToString() == "on" ? CSS_Color.MainColor : CSS_Color.PromptingColor2;
-                bodyView.arcBar.ThumbImagePath = aC.trait_on_off.curValue.ToString() == "on" ? "FunctionIcon/AC/DiyThumbIconOn.png" : "FunctionIcon/AC/DiyThumbIcon.png";
-                bodyView.arcBar.IsClickable = aC.trait_on_off.curValue.ToString() == "on";
-
-                //bodyView.arcBar.ProgressBarColor = aC.on_off == "on" ? CSS_Color.MainColor : CSS_Color.PromptingColor2;
-                //bodyView.arcBar.ThumbImagePath = aC.on_off == "on" ? "FunctionIcon/AC/DiyThumbIconOn.png" : "FunctionIcon/AC/DiyThumbIcon.png";
-                //bodyView.arcBar.IsClickable = aC.on_off == "on";
-
-                //Control.Send(CommandType_A.write, aC);
+                if (aC.trait_on_off.curValue.ToString() == "on")
+                {
+                    arcBar.ThumbImagePath = "FunctionIcon/AC/DiyThumbIconOn.png";
+                    btnSwitch.IsSelected = true;
+                    arcBar.IsOffline = false;
+                }
+                else
+                {
+                    arcBar.ThumbImagePath = "FunctionIcon/AC/DiyThumbIcon.png";
+                    btnSwitch.IsBold = false;
+                    arcBar.IsOffline = true;
+                }
                 System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
-                d.Add("on_off", aC.trait_on_off.curValue.ToString());
+                d.Add(FunctionAttributeKey.OnOff, aC.trait_on_off.curValue.ToString());
                 Control.Ins.SendWriteCommand(aC, d);
             };
         }
@@ -174,7 +174,7 @@
                 btnMode.UnSelectedImagePath = aC.curModeImage;
                 //Control.Send(CommandType_A.write, aC);
                 System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
-                d.Add("mode", aC.curModeIndex.ToString());
+                d.Add(FunctionAttributeKey.Mode, curMode);
                 Control.Ins.SendWriteCommand(aC, d);
                 dialog.Close();
             };
@@ -198,7 +198,7 @@
                 btnWindSpeed.UnSelectedImagePath = aC.curFanImage;
                 //Control.Send(CommandType_A.write, aC);
                 System.Collections.Generic.Dictionary<string, string> d = new System.Collections.Generic.Dictionary<string, string>();
-                d.Add("fan", aC.curFanIndex.ToString());
+                d.Add(FunctionAttributeKey.FanSpeed, curFan);
                 Control.Ins.SendWriteCommand(aC, d);
                 dialog.Close();
             };

--
Gitblit v1.8.0