using System;
using System.Collections.Generic;
using System.Text;
namespace Shared.Phone.UserCenter
{
///
/// 做成一个存在于TopFrameLayout里面的标题控件✩
///
public class TopLayoutTitleControl : ButtonBase
{
///
/// 做成一个存在于TopFrameLayout里面的标题控件
///
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;
}
}
}