using System; using System.Collections.Generic; using System.Text; namespace Shared.Phone.UserCenter { /// /// 做成一个存在于TopFrameLayout里面的标题控件 /// public class TopLayoutTitleView : ButtonCommon { /// /// 做成一个存在于TopFrameLayout里面的标题控件 /// public TopLayoutTitleView() { this.Name = "txtTitle"; this.X = Application.GetRealWidth(125); this.Y = Application.GetRealHeight(90); this.Width = Application.GetRealWidth(830); this.Height = Application.GetRealHeight(110); this.TextAlignment = TextAlignment.Center; this.Gravity = Gravity.Center; this.TextColor = UserCenterColor.Current.TopTitleTextColor; } } }