From c26c06ef4a22d6fb9e59dc734abca92fa8a23c47 Mon Sep 17 00:00:00 2001
From: 陈嘉乐 <cjl@hdlchina.com.cn>
Date: 星期五, 05 六月 2020 17:41:00 +0800
Subject: [PATCH] 2020-06-05-02
---
HDL_ON/UI/UI2/1-HomePage/HomePageBLL.cs | 202 ++++++++++++++++++++++++++++++++++++++++++--------
1 files changed, 168 insertions(+), 34 deletions(-)
diff --git a/HDL_ON/UI/UI2/1-HomePage/HomePageBLL.cs b/HDL_ON/UI/UI2/1-HomePage/HomePageBLL.cs
index e846ab5..e3fef44 100644
--- a/HDL_ON/UI/UI2/1-HomePage/HomePageBLL.cs
+++ b/HDL_ON/UI/UI2/1-HomePage/HomePageBLL.cs
@@ -6,62 +6,196 @@
{
public partial class HomePage
{
- public static void UpdataLightView(Light light)
+ /// <summary>
+ /// 鏇存柊涓婚〉澶╂皵
+ /// </summary>
+ public static void LoadEvent_RefreshAir()
+ {
+ bodyView.btnTempValues.Text = MainPage.cityInfo.temperature == null ? "--" : MainPage.cityInfo.temperature;
+ bodyView.btnHumidityValues.Text = MainPage.cityInfo.humidity == null ? "--" : MainPage.cityInfo.humidity;
+ bodyView.btnPm25Values.Text = MainPage.cityInfo.pm25 == null ? "--" : MainPage.cityInfo.pm25;
+ }
+
+ /// <summary>
+ /// 鍔犺浇鍔熻兘鏀惰棌鎸夐挳浜嬩欢
+ /// </summary>
+ void LoadEvent_FunctionCollection(Button btn,Function function,bool isDevice)
+ {
+ btn.MouseUpEventHandler += (sender, e) =>
+ {
+ function.collection = false;
+ string msg = function.name + Language.StringByID(StringId.CollectionCancelled);
+ if (isDevice)
+ {
+ LoadDeviceFunctionControlZone();
+ }
+ else
+ {
+ LoadSceneFunctionControlZone();
+ }
+ DB_ResidenceData.residenceData.SaveResidenceData();
+ new PublicAssmebly().TipMsgAutoClose(msg, true);
+ };
+ }
+
+ /// <summary>
+ /// 淇敼鏄剧ず鐨勫姛鑳界被鍨�
+ /// 璁惧鍔熻兘/鍦烘櫙鍔熻兘
+ /// </summary>
+ void LoadEvent_ChangeShowedFunctionType()
+ {
+ btnChangeFunction.MouseUpEventHandler = (sender, e) =>
+ {
+ btnChangeFunction.IsSelected = true;
+ btnChangeFunction.TextSize = CSS.CSS_FontSize.HeadlineFontSize;
+ btnChangeFunction.IsBold = true;
+ btnChangeScene.TextSize = CSS.CSS_FontSize.TextFontSize;
+ btnChangeScene.IsSelected = false;
+ btnChangeScene.IsBold = false;
+ CurShowTypeIsFunction = true;
+ contentView.PageIndex = 0;
+ };
+
+ btnChangeScene.MouseUpEventHandler = (sender, e) =>
+ {
+ btnChangeScene.IsSelected = true;
+ btnChangeScene.TextSize = CSS.CSS_FontSize.HeadlineFontSize;
+ btnChangeScene.IsBold = true;
+ btnChangeFunction.TextSize = CSS.CSS_FontSize.TextFontSize;
+ btnChangeFunction.IsSelected = false;
+ btnChangeFunction.IsBold = false;
+ CurShowTypeIsFunction = false;
+ contentView.PageIndex = 1;
+ };
+
+ contentView.PageChange = (sender, e) =>
+ {
+ if (contentView.PageIndex == 0)
+ {
+ btnChangeFunction.IsSelected = true;
+ btnChangeFunction.TextSize = CSS.CSS_FontSize.HeadlineFontSize;
+ btnChangeFunction.IsBold = true;
+ btnChangeScene.TextSize = CSS.CSS_FontSize.TextFontSize;
+ btnChangeScene.IsSelected = false;
+ btnChangeScene.IsBold = false;
+ CurShowTypeIsFunction = true;
+ }
+ else
+ {
+ btnChangeScene.IsSelected = true;
+ btnChangeScene.TextSize = CSS.CSS_FontSize.HeadlineFontSize;
+ btnChangeScene.IsBold = true;
+ btnChangeFunction.TextSize = CSS.CSS_FontSize.TextFontSize;
+ btnChangeFunction.IsSelected = false;
+ btnChangeFunction.IsBold = false;
+ CurShowTypeIsFunction = false;
+ }
+ };
+ }
+
+ /// <summary>
+ /// 鏇存柊鏄剧ず鐘舵��
+ /// </summary>
+ public static void UpdataFunctionStates(Function function)
{
Application.RunOnMainThread(() =>
{
- if (bodyView != null)
+ try
{
- foreach (var dic in LightViews)
+ if (bodyView != null)
{
- if (dic.Key == light.sid)
+ foreach (var view in bodyView.functionViews)
{
- var state = light.state == 1;
- var view = dic.Value;
- for (int i = 0; i < view.ChildrenCount; i++)
+ if (view.Tag.ToString() == function.sid)
{
- if (view.GetChildren(i).GetType() == typeof(Button))
+ var state = function.on_off == "on";
+ for (int i = 0; i < view.ChildrenCount; i++)
{
- var btn = view.GetChildren(i) as Button;
- btn.IsSelected = state;
- if (btn.Tag != null && btn.Tag.ToString() == "state")
+ if (view.GetChildren(i).GetType() == typeof(Button))
{
- btn.Text = light.lastState;
+ var btn = view.GetChildren(i) as Button;
+ btn.IsSelected = state;
+ if (btn.Tag != null && btn.Tag.ToString() == "state")
+ {
+ btn.Text = function.lastState;
+ }
}
}
}
}
}
}
+ catch (Exception ex)
+ {
+ MainPage.Log($"HomePage updata funciton states error {ex.Message}");
+ }
});
}
-
- void LoadSwitchEvent(Function function,Button btnSwitch,FrameLayout view)
+ /// <summary>
+ /// 鍔犺浇鍦烘櫙鎺у埗浜嬩欢
+ /// </summary>
+ void LoadEvent_ControlScene(Button btnCoverd ,Function function)
{
-
- btnSwitch.MouseUpEventHandler += (sender, e) =>
+ btnCoverd.MouseDownEventHandler = (sender, e) =>
{
- if (function.functionCategory == FunctionType.Light)
+ btnCoverd.IsSelected = true;
+ };
+ btnCoverd.MouseUpEventHandler = (sender, e) =>
+ {
+ string msg = function.name + Language.StringByID(StringId.AlreadyOpened);
+ new PublicAssmebly().TipMsgAutoClose(msg, true);
+ Control.Send(function as Scene);
+ };
+
+ }
+
+ /// <summary>
+ /// 鍔犺浇鐏厜寮�鍏充簨浠�
+ /// </summary>
+ /// <param name="function"></param>
+ /// <param name="btnSwitch"></param>
+ void LoadEvent_SwitchFunction(Function function, Button btnSwitch)
+ {
+ btnSwitch.MouseUpEventHandler = (sender, e) =>
+ {
+ btnSwitch.IsSelected = !btnSwitch.IsSelected;
+ new System.Threading.Thread(() =>
{
- var curState = !btnSwitch.IsSelected;
- for (int i = 0; i < view.ChildrenCount; i++)
- {
- if (view.GetChildren(i).GetType() == typeof(Button))
- {
- var btn = view.GetChildren(i) as Button;
- btn.IsSelected = curState;
- }
- }
- new System.Threading.Thread(() =>
- {
- var light = function as Light;
- light.state = btnSwitch.IsSelected ? 1 : 0;
- Control.Send("write", function, 3);
- })
- { IsBackground = true }.Start();
- }
+ function.on_off = btnSwitch.IsSelected ? "on" : "off";
+ Control.Send(CommandType_A.write, function);
+ })
+ { IsBackground = true }.Start();
};
}
+
+ /// <summary>
+ /// 鍔犺浇绐楀笜鎺у埗浜嬩欢
+ /// </summary>
+ void LoadEvent_ControlCurtain(Curtain curtain, Button btnClose, Button btnOpen)
+ {
+ btnClose.MouseDownEventHandler = (sender, e) =>
+ {
+ btnClose.IsSelected = true;
+ };
+ btnClose.MouseUpEventHandler = (sender, e) =>
+ {
+ btnClose.IsSelected = false;
+ curtain.on_off = "off";
+ Control.Send(CommandType_A.write, curtain);
+ };
+
+ btnOpen.MouseDownEventHandler = (sender, e) =>
+ {
+ btnOpen.IsSelected = true;
+ };
+ btnOpen.MouseUpEventHandler = (sender, e) =>
+ {
+ btnOpen.IsSelected = false;
+ curtain.on_off = "on";
+ Control.Send(CommandType_A.write, curtain);
+ };
+ }
+
}
}
--
Gitblit v1.8.0