From 7232642ff48a7fbde2018cde652f3e771fa58025 Mon Sep 17 00:00:00 2001 From: wei <kaede@kaededeMacBook-Air.local> Date: 星期三, 27 一月 2021 14:32:55 +0800 Subject: [PATCH] 20200127-英文版处理 --- HDL_ON/UI/UI2/4-PersonalCenter/PersonalDataPage.cs | 14 ++++++++++---- 1 files changed, 10 insertions(+), 4 deletions(-) diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/PersonalDataPage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/PersonalDataPage.cs old mode 100755 new mode 100644 index 41f25de..2b9b5f8 --- a/HDL_ON/UI/UI2/4-PersonalCenter/PersonalDataPage.cs +++ b/HDL_ON/UI/UI2/4-PersonalCenter/PersonalDataPage.cs @@ -482,7 +482,7 @@ btnResetPasswordText = new Button() { X = Application.GetRealWidth(16), - Width = Application.GetRealWidth(120), + Width = Application.GetRealWidth(220), TextAlignment = TextAlignment.CenterLeft, TextColor = CSS_Color.FirstLevelTitleColor, TextSize = CSS_FontSize.SubheadingFontSize, @@ -513,11 +513,15 @@ /// </summary> interpretationSettingsView = new FrameLayout() { - //Y = optionListView.Bottom + Application.GetRealHeight(8), BackgroundColor = CSS_Color.MainBackgroundColor, Height = Application.GetRealHeight(66), }; bodyScrolView.AddChidren(interpretationSettingsView); + if(Language.CurrentLanguage != "Chinese") + { + interpretationSettingsView.Height = Application.GetRealHeight(80); + } + btnInterpretationSettingsTitle = new Button() { X = Application.GetRealWidth(16), @@ -532,12 +536,14 @@ btnInterpretationSettingsTip = new Button() { X = Application.GetRealWidth(16), - Y = btnInterpretationSettingsTitle.Bottom + Application.GetRealHeight(4), + Y = btnInterpretationSettingsTitle.Bottom, Height = Application.GetRealHeight(32), + Width = Application.GetRealWidth(290), TextAlignment = TextAlignment.TopLeft, TextColor = CSS_Color.PromptingColor1, TextSize = CSS_FontSize.TextFontSize, - TextID = StringId.AppUnlockSettingsTip + TextID = StringId.AppUnlockSettingsTip, + IsMoreLines = true, }; interpretationSettingsView.AddChidren(btnInterpretationSettingsTip); -- Gitblit v1.8.0