From c05a93ddb0714a310a31574aaf030e677d9a07b6 Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期五, 06 一月 2023 17:43:31 +0800 Subject: [PATCH] 增加多网关绑定支持 --- Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/HelpView.cs | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/HelpView.cs b/Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/HelpView.cs index 1d1ef14..794ee1d 100644 --- a/Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/HelpView.cs +++ b/Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/HelpView.cs @@ -1,6 +1,7 @@ 锘縰sing System; using System.Collections.Generic; using Shared.SimpleControl.Phone.Music; +using SmartHome; namespace Shared.SimpleControl.Phone { @@ -128,6 +129,13 @@ }; msgView.AddChidren (btnMail); +// btnMail.MouseUpEventHandler += (e, e2) => { +//#if DEBUG +// GetDeviceList (); +//#endif + +// }; + var btnMail2 = new Button () { X = Application.GetRealWidth (100), Y = btnMail.Bottom, @@ -138,6 +146,13 @@ TextAlignment = TextAlignment.CenterLeft, }; msgView.AddChidren (btnMail2); + +// btnMail2.MouseUpEventHandler += (e, e2) => { +//#if DEBUG +// upload (); +//#endif + +// }; var btnFAQ = new Button () { Height = Application.GetRealHeight(100), @@ -150,6 +165,13 @@ }; AddChidren (btnFAQ); +// btnFAQ.MouseUpEventHandler += (e,e2) =>{ +//#if DEBUG + +// UploadSecneList (); +// //upload (); +//#endif +// }; var btnLine = new Button () { @@ -160,5 +182,7 @@ AddChidren (btnLine); } + + } } -- Gitblit v1.8.0