黄学彪
2019-11-20 5174e95a428876018ce3372f3dbc24b2861ea472
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
        }
    }
}