| | |
| | | |
| | | #endregion |
| | | |
| | | //体验模式 |
| | | if(MainPage.NoLoginMode) |
| | | { |
| | | |
| | | Button btnExit = new Button() |
| | | { |
| | | Y = Application.GetRealHeight(58) + personalInfoView.Bottom, |
| | | Height = Application.GetRealHeight(50), |
| | | TextAlignment = TextAlignment.Center, |
| | | SelectedTextColor = CSS_Color.MainColor, |
| | | TextColor = CSS_Color.BackgroundColor, |
| | | TextSize = CSS_FontSize.SubheadingFontSize, |
| | | TextID = StringId.NextStep, |
| | | BackgroundColor = CSS_Color.MainBackgroundColor, |
| | | SelectedBackgroundColor = CSS_Color.MainBackgroundColor, |
| | | }; |
| | | if(Language.CurrentLanguage =="Chinese") |
| | | { |
| | | btnExit.Text = "退出体验模式"; |
| | | } |
| | | else |
| | | { |
| | | btnExit.Text = "Exit dome"; |
| | | } |
| | | btnExit.MouseUpEventHandler = (sender, e) => |
| | | { |
| | | HDLCommon.Current.Logout(); |
| | | }; |
| | | |
| | | return; |
| | | } |
| | | |
| | | contentView = new VerticalScrolViewLayout() |
| | | { |
| | | Y = Application.GetRealHeight(8) + personalInfoView.Bottom, |