using System;
|
|
namespace Shared.SimpleControl.Phone
|
{
|
/// <summary>
|
/// 用户界面标题栏
|
/// </summary>
|
public class UserTop : FrameLayout
|
{
|
public UserTop ()
|
{
|
Height = Application.GetRealHeight (126);
|
BackgroundColor = SkinStyle.Current.MainColor;
|
|
initTopFrameLaout ();
|
}
|
|
void initTopFrameLaout ()
|
{
|
Button LogoButton = new Button () {
|
Width = Application.GetRealWidth (154),
|
Height = Application.GetRealHeight (90),
|
UnSelectedImagePath = MainPage.LogoString,
|
};
|
AddChidren (LogoButton);
|
|
Button NameButton = new Button () {
|
Width = Application.GetRealWidth (400),
|
Height = Application.GetMinReal (90),
|
Text = MainPage.SoftTitle,
|
TextColor = SkinStyle.Current.TextColor1,
|
Gravity = Gravity.CenterHorizontal,
|
TextAlignment = TextAlignment.Center,
|
Y = Application.GetRealHeight (30),
|
TextSize = 20,
|
};
|
AddChidren (NameButton);
|
|
}
|
}
|
}
|