From 22a724344cb747b8a6827e069d1857de59d2d970 Mon Sep 17 00:00:00 2001
From: wxr <wxr@hdlchina.com.cn>
Date: 星期四, 12 九月 2024 20:26:39 +0800
Subject: [PATCH] Update ClassificationPageBLL.cs

---
 HDL_ON/UI/UI1-Login/RegisterPage.cs |   22 +++++++++++++++++-----
 1 files changed, 17 insertions(+), 5 deletions(-)

diff --git a/HDL_ON/UI/UI1-Login/RegisterPage.cs b/HDL_ON/UI/UI1-Login/RegisterPage.cs
index 4307f3a..8bcf14a 100644
--- a/HDL_ON/UI/UI1-Login/RegisterPage.cs
+++ b/HDL_ON/UI/UI1-Login/RegisterPage.cs
@@ -233,12 +233,22 @@
             AddChidren(bodyView);
 
             //2020-12-22 澧炲姞鐐瑰嚮闅愯棌閿洏浜嬩欢
-            bodyView.MouseDownEventHandler += (sender, e) => {
+            bodyView.MouseDownEventHandler += (sender, e) =>
+            {
                 Application.HideSoftInput();
             };
 
             pm = new HttpServerRequest();
-            OnAppConfig.Instance.GlobalRegion.regionUrl = "";
+            try
+            {
+                if (OnAppConfig.Instance.GlobalRegion != null)
+                {
+                    OnAppConfig.Instance.GlobalRegion.regionUrl = "";
+                }
+            }catch(Exception ex)
+            {
+                MainPage.Log("Error", "杩涘叆娉ㄥ唽鐣岄潰AppConfig寮傚父锛�" + ex.Message);
+            }
         }
 
         //public RegisterPage(Action action)
@@ -290,7 +300,7 @@
                 TextSize = CSS_FontSize.TextFontSize,
             };
             bodyView.AddChidren(btnEmailLogin);
-            if(Language.CurrentLanguage!= "Chinese")
+            if (Language.CurrentLanguage != "Chinese")
             {
                 btnPhoneLogin.Width = Application.GetRealWidth(180);
                 btnEmailLogin.Width = Application.GetRealWidth(180);
@@ -373,8 +383,10 @@
             };
 
             //璺宠浆鍥藉鍖哄彿閫夋嫨鐣岄潰
-            EventHandler<MouseEventArgs> eHandler = (sender, e) => {
-                JLCountrycode.CountryCodeView.Current.Show((countryName, code) => {
+            EventHandler<MouseEventArgs> eHandler = (sender, e) =>
+            {
+                JLCountrycode.CountryCodeView.Current.Show((countryName, code) =>
+                {
                     if (!string.IsNullOrEmpty(code))
                     {
                         phoneZoneCode = code;

--
Gitblit v1.8.0