From 44aa189d9e01f8c0d19e00e44f1ef419ff2cc093 Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期四, 08 十二月 2022 22:36:38 +0800
Subject: [PATCH] 2022年12月08日22:36:36

---
 HDL_ON/UI/UI2/4-PersonalCenter/AddFunction/Iot_BrandListPage.cs |   19 ++++++++++++++-----
 1 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/AddFunction/Iot_BrandListPage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/AddFunction/Iot_BrandListPage.cs
index 32531d7..6ac1e9a 100644
--- a/HDL_ON/UI/UI2/4-PersonalCenter/AddFunction/Iot_BrandListPage.cs
+++ b/HDL_ON/UI/UI2/4-PersonalCenter/AddFunction/Iot_BrandListPage.cs
@@ -55,7 +55,12 @@
                 TextAlignment = TextAlignment.CenterLeft,
             };
             bodyView.AddChidren(btnTipText);
-             
+            if (Language.CurrentLanguage != "Chinese")
+            {
+                btnTipText.Text = "Synchronize your devices on the third-party platform to on Pro for control by binding the third-party platform account to the cloud connection";
+            }
+
+
             contentView = new VerticalScrolViewLayout()
             {
                 Y = Application.GetRealHeight(150),
@@ -76,7 +81,7 @@
 
         }
         /// <summary>
-        /// 鑾峰彇缁戝畾鍒楄〃
+        /// 鑾峰彇鍒楄〃
         /// </summary>
         void GetBindList()
         {
@@ -197,9 +202,8 @@
                 };
                 row.AddChidren(btnName);
                 //涓嬭浇绗笁鏂瑰搧鐗宨con
-                ImageUtlis.Current.Load3tyBrandIconImages(brand.brandName, brand.authrBandIconUrl, btnIcon);
-
-                btnName.MouseUpEventHandler = (sender, e) => {
+                ImageUtlis.Current.Load3tyBrandIconImages(brand.brandName, brand.authBrandIconUrl, btnIcon);
+                EventHandler<MouseEventArgs> eventHandler =  (sender, e) => {
                     if (brand.hasAuthorization)
                     {
                         Action unboundAction = () =>
@@ -231,6 +235,11 @@
                         MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
                     }
                 };
+
+                btnRight.MouseUpEventHandler = eventHandler;
+                row.MouseUpEventHandler = eventHandler;
+                btnName.MouseUpEventHandler = eventHandler;
+                btnBindTip.MouseUpEventHandler = eventHandler;
             }
 
         }

--
Gitblit v1.8.0