From 0e4ad9a4de5b95f58daf1a6c5072c6a57cf223f9 Mon Sep 17 00:00:00 2001
From: gxc <guoxuecheng@guoxuechengdeMacBook-Pro.local>
Date: 星期一, 30 十二月 2019 10:02:10 +0800
Subject: [PATCH] 2019.12.30

---
 ZigbeeApp/Shared/Phone/Device/Account/AccountLogin.cs |   23 ++++++++++++++++-------
 1 files changed, 16 insertions(+), 7 deletions(-)

diff --git a/ZigbeeApp/Shared/Phone/Device/Account/AccountLogin.cs b/ZigbeeApp/Shared/Phone/Device/Account/AccountLogin.cs
index f921ddf..0e35e91 100644
--- a/ZigbeeApp/Shared/Phone/Device/Account/AccountLogin.cs
+++ b/ZigbeeApp/Shared/Phone/Device/Account/AccountLogin.cs
@@ -167,12 +167,14 @@
                 Width = Application.GetRealWidth(300),
                 Gravity = Gravity.CenterHorizontal,
                 TextID = R.MyInternationalizationString.AppName,
-                TextColor = ZigbeeColor.Current.GXCTextWhiteColor
+                TextColor = ZigbeeColor.Current.GXCTextWhiteColor,
+                TextSize=16
             };
             midFrameLayout.AddChidren(logoName);
 
             phoneEmailForm = new PhoneEmailForm();
             phoneEmailForm.Init(midFrameLayout);
+           
 
             //閿欒鎻愮ずBtn
             loginErrorBtn = new Button()
@@ -183,6 +185,8 @@
                 Height = Application.GetRealHeight(58),
                 TextColor = ZigbeeColor.Current.GXCTextRed,
                 TextAlignment = TextAlignment.CenterLeft,
+                TextSize=CommonFormResouce.TextSize,
+                IsBold=true
             };
             midFrameLayout.AddChidren(loginErrorBtn);
 
@@ -205,7 +209,7 @@
                 Y = Application.GetRealHeight(1198),
                 Width = Application.GetRealWidth(250),
                 Height = Application.GetRealHeight(58),
-                TextID = R.MyInternationalizationString.ForgotPWD,
+                TextID = R.MyInternationalizationString.ForgotPWD_1,
                 TextSize = CommonFormResouce.loginTextSize,
                 TextColor = Shared.Common.ZigbeeColor.Current.GXCTextGrayColor,
                 TextAlignment = TextAlignment.CenterRight
@@ -219,14 +223,15 @@
                 Height = Application.GetRealHeight(127),
                 Gravity = Gravity.CenterHorizontal,
                 TextID = R.MyInternationalizationString.Login,
-                TextSize = 15,
+                TextSize = 16,
                 TextColor = ZigbeeColor.Current.GXCTextGrayColor,
                 SelectedTextColor = ZigbeeColor.Current.GXCTextWhiteColor,
                 SelectedBackgroundColor = ZigbeeColor.Current.GXCButtonBlackSelectedColor,
                 BackgroundColor = ZigbeeColor.Current.GXCButtonUnSelectedColor,
                 Radius = (uint)Application.GetRealHeight(127 / 2),
                 Enable = !string.IsNullOrEmpty(pwdRow.PasswrodET?.Text),
-                IsSelected = !string.IsNullOrEmpty(pwdRow.PasswrodET?.Text)
+                IsSelected = !string.IsNullOrEmpty(pwdRow.PasswrodET?.Text),
+                IsBold=true
             };
             midFrameLayout.AddChidren(loginBtn);
 
@@ -280,6 +285,11 @@
             #endregion
 
             BindEvent();
+
+            if (string.IsNullOrEmpty(account) == false && AccountLogic.Instance.CheckEmail(account) == true)
+            {
+                SelectPhoneOrEmail_MouseUpEvent(phoneEmailForm.SelectedEmail, null);
+            }
         }
 
         #endregion
@@ -682,8 +692,6 @@
             }
         }
 
-
-
         /// <summary>
         /// phone/email 閫夋嫨
         /// </summary>
@@ -692,9 +700,10 @@
         private void SelectPhoneOrEmail_MouseUpEvent(object sender, MouseEventArgs mouseEventArgs)
         {
             phoneEmailForm.SelectedPhone.IsSelected = phoneEmailForm.SelectedEmail.IsSelected = false;
+            phoneEmailForm.SelectedPhone.IsBold = phoneEmailForm.SelectedEmail.IsBold = false;
             loginBtn.Enable = loginBtn.IsSelected = false;
             loginErrorBtn.Text = string.Empty;
-            (sender as Button).IsSelected = true;
+            (sender as Button).IsSelected = (sender as Button).IsBold = true;
             if((sender as Button).Tag.ToString()=="Phone")
             {
                 AddPhoneOrEmailFL(accountPwdFL, "Phone");

--
Gitblit v1.8.0