using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Shared.Phone.UserCenter
|
{
|
/// <summary>
|
/// 做成一个存在于TopFrameLayout里面的标题控件✩
|
/// </summary>
|
public class TopLayoutTitleControl : ButtonBase
|
{
|
/// <summary>
|
/// 做成一个存在于TopFrameLayout里面的标题控件
|
/// </summary>
|
public TopLayoutTitleControl()
|
{
|
this.Name = "txtTitle";
|
this.TextSize = 17;
|
this.X = Application.GetRealWidth(161);
|
this.Height = Application.GetRealHeight(69);
|
this.Width = Application.GetRealWidth(850);
|
this.Gravity = Gravity.CenterVertical;
|
this.TextColor = UserCenterColor.Current.TopLayoutTitleText;
|
}
|
}
|
}
|