From b621c50182f42a095b75fc08584240905e22d944 Mon Sep 17 00:00:00 2001 From: JLChen <551775569@qq.com> Date: 星期三, 24 三月 2021 15:24:20 +0800 Subject: [PATCH] 2021-03-24 1.修改时间选择控件不调用系统的时间选择器,实现自定义时间选择器。 2.优化注册和忘记密码页面,增加倒计时和重发按钮功能 --- 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