From c1e3ff02ca39fe65d0685b06d1e1f63e25eaedb5 Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期三, 07 六月 2023 14:54:12 +0800
Subject: [PATCH] 2023年06月07日14:53:51

---
 HDL_ON/UI/UI2/3-Intelligence/Automation/LogicView/TemperatureView.cs |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/HDL_ON/UI/UI2/3-Intelligence/Automation/LogicView/TemperatureView.cs b/HDL_ON/UI/UI2/3-Intelligence/Automation/LogicView/TemperatureView.cs
index f93fdc3..f8b7a85 100644
--- a/HDL_ON/UI/UI2/3-Intelligence/Automation/LogicView/TemperatureView.cs
+++ b/HDL_ON/UI/UI2/3-Intelligence/Automation/LogicView/TemperatureView.cs
@@ -11,7 +11,7 @@
         /// <param name="frameLayout">寮圭獥鐖舵帶浠�</param>
         /// <param name="stateValue">涔嬪墠鐘舵�佸��</param>
         /// <param name="action">杩斿洖缁撴灉</param>
-        public void FLayoutView(FrameLayout frameLayout, string stateValue, Action<string> action,int min,int max)
+        public void FLayoutView(FrameLayout frameLayout, string stateValue, Action<string> action,int min,int max,string unit)
         {
             FrameLayout frame = new FrameLayout
             {
@@ -31,15 +31,15 @@
             for (int i = min; i < max; i++)
             {
                 //娣诲姞鏁版嵁
-                temperatureList.Add(i.ToString() + "鈩�");
-                temperatureList.Add((i + 0.5).ToString() + "鈩�");
+                temperatureList.Add(i.ToString() + unit);
+                temperatureList.Add((i + 0.5).ToString() + unit);
             }
             //鍔犺浇鏁版嵁鐣岄潰鐨勮缃柟娉�(鍒楄〃浜掍笉鑱斿姩)
             view.mUIPickerView.setNPicker(temperatureList, null, null);
             //榛樿鍒濆閫変腑鐘舵��
             view.mUIPickerView.setCurrentItems(9, 0, 0);
             //瀹氫箟涓�涓眬閮ㄥ彉閲忚褰曢�変腑鏃堕棿
-            string temperature = "25鈩�";
+            string temperature = "25"+ unit;
             for (int i = 0; i < temperatureList.Count; i++)
             {
                 if (temperatureList[i] == stateValue)

--
Gitblit v1.8.0