From 8905afcbd6dbb859e79199be86a7c706a03307b0 Mon Sep 17 00:00:00 2001 From: JLChen <551775569@qq.com> Date: 星期四, 26 十一月 2020 15:34:59 +0800 Subject: [PATCH] 2020-11-26 1.获取支持、过户新功能页面实现。2UI优化调整。 --- HDL_ON/UI/UI2/4-PersonalCenter/AccountBindInfo/NewBindAccountPage.cs | 19 +++++++++++-------- 1 files changed, 11 insertions(+), 8 deletions(-) diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/AccountBindInfo/NewBindAccountPage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/AccountBindInfo/NewBindAccountPage.cs index 9de0907..8362af1 100644 --- a/HDL_ON/UI/UI2/4-PersonalCenter/AccountBindInfo/NewBindAccountPage.cs +++ b/HDL_ON/UI/UI2/4-PersonalCenter/AccountBindInfo/NewBindAccountPage.cs @@ -16,6 +16,10 @@ FrameLayout bodyView; Button btnBind; EditText etContent; + + /// <summary> + /// + /// </summary> Action<string> action; /// <summary> @@ -30,7 +34,6 @@ /// 鏄惁鎹㈢粦 /// </summary> bool isModifyBind; - /// <summary> /// 鎵嬫満鍖哄彿 /// </summary> @@ -100,13 +103,13 @@ if (!string.IsNullOrEmpty(code)) { phoneZoneCode = code; - codeView.btnSubtitle.Text = "+" + phoneZoneCode; + codeView.BtnSubtitle.Text = "+" + phoneZoneCode; } }); }; - codeView.goAction = selectAction; - codeView.btnTilte.Text = Language.StringByID(StringId.CountryOrRegion); - codeView.btnSubtitle.Text = "+" + phoneZoneCode; + codeView.GoAction = selectAction; + codeView.BtnTilte.Text = Language.StringByID(StringId.CountryOrRegion); + codeView.BtnSubtitle.Text = "+" + phoneZoneCode; //鎵嬫満鍙疯緭鍏ユ FrameLayout rowView = new FrameLayout() @@ -144,7 +147,7 @@ Y = Application.GetRealHeight(213), Gravity = Gravity.CenterHorizontal, Width = Application.GetRealWidth(220), - Height = Application.GetRealHeight(44), + Height = Application.GetRealWidth(44), BackgroundColor = CSS_Color.MainColor, TextAlignment = TextAlignment.Center, TextColor = CSS_Color.MainBackgroundColor, @@ -200,7 +203,7 @@ Y = Application.GetRealHeight(213), Gravity = Gravity.CenterHorizontal, Width = Application.GetRealWidth(220), - Height = Application.GetRealHeight(44), + Height = Application.GetRealWidth(44), BackgroundColor = CSS_Color.MainColor, TextAlignment = TextAlignment.Center, TextColor = CSS_Color.MainBackgroundColor, @@ -327,7 +330,7 @@ { button.BackgroundColor = CSS_Color.PromptingColor1; var vcp = new NewBindVerificationCodePage(); - vcp.phoneZoneCode = phoneZoneCode; + vcp.PhoneZoneCode = phoneZoneCode; MainPage.BasePageView.AddChidren(vcp); vcp.LoadPage(action, titleId, account, isPhone, time, isModifyBind); MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1; -- Gitblit v1.8.0