using System; using Shared; using HDL_ON.UI.CSS; namespace HDL_ON.UI { /// /// 获取支持电话页面 /// public class GetSupportPage : FrameLayout { /// /// /// FrameLayout bodyView; /// /// /// public GetSupportPage() { bodyView = this; BackgroundColor = CSS_Color.MainBackgroundColor; } public void LoadPage() { new TopViewDiv(bodyView, Language.StringByID(StringId.GetSupport)).LoadTopView(); FrameLayout phoneRow = new FrameLayout() { Y = Application.GetRealHeight(64), Height = Application.GetRealWidth(50), }; bodyView.AddChidren(phoneRow); Button btnPhoneTitle = new Button() { X = Application.GetRealWidth(16), Width = Application.GetRealWidth(48), TextID = StringId.Telephone, TextSize = CSS_FontSize.SubheadingFontSize, TextAlignment = TextAlignment.CenterLeft, TextColor = CSS_Color.FirstLevelTitleColor, }; phoneRow.AddChidren(btnPhoneTitle); Button btnPhoneText = new Button() { X = btnPhoneTitle.Right, Width = Application.GetRealWidth(300), TextAlignment = TextAlignment.CenterLeft, TextSize = CSS_FontSize.TextFontSize, TextColor = CSS_Color.FirstLevelTitleColor, Text = "400 855 8535", }; phoneRow.AddChidren(btnPhoneText); phoneRow.AddChidren(new Button() { X = Application.GetRealWidth(16), Y = Application.GetRealWidth(49), Height = Application.GetRealHeight(1), BackgroundColor = CSS_Color.DividingLineColor }); FrameLayout emailRow = new FrameLayout() { Y = phoneRow.Bottom, Height = Application.GetRealWidth(50), }; bodyView.AddChidren(emailRow); Button btnEmailTitle = new Button() { X = Application.GetRealWidth(16), Width = Application.GetRealWidth(48), TextID = StringId.Email_, TextSize = CSS_FontSize.SubheadingFontSize, TextAlignment = TextAlignment.CenterLeft, TextColor = CSS_Color.FirstLevelTitleColor, }; emailRow.AddChidren(btnEmailTitle); Button btnEmailText = new Button() { X = btnEmailTitle.Right, Width = Application.GetRealWidth(300), TextAlignment = TextAlignment.CenterLeft, TextSize = CSS_FontSize.TextFontSize, TextColor = CSS_Color.FirstLevelTitleColor, Text = Constant.SUPPORT_EMAIL, }; emailRow.AddChidren(btnEmailText); emailRow.AddChidren(new Button() { X = Application.GetRealWidth(16), Y = Application.GetRealWidth(49), Height = Application.GetRealHeight(1), BackgroundColor = CSS_Color.DividingLineColor }); if (Language.CurrentLanguage == "English") { btnPhoneTitle.Text = "Tel:"; btnEmailTitle.Width = Application.GetRealWidth(80); } } } }