using System;
using System.Collections.Generic;
using System.Text;
namespace Shared.Phone.UserCenter
{
///
/// 做成一个存在于BodyFrameLayout里面的头部提示信息的控件(正常文本字体颜色,文字向左靠齐),
/// 理论上它的字体应该比较大
///
public class TitleViewControl : ButtonCommon
{
///
/// 做成一个存在于BodyFrameLayout里面的头部提示信息的控件(正常文本字体颜色,文字向左靠齐),
/// 理论上它的字体应该比较大
///
/// 宽度
/// 高度
/// 是否计算真实值
public TitleViewControl(int i_Width, int i_Height, bool real = false)
{
this.InitSize(i_Width, i_Height, real);
this.X = ControlCommonResourse.XXLeft;
}
///
/// 做成一个存在于BodyFrameLayout里面的头部提示信息的控件(正常文本字体颜色,文字向左靠齐),
/// 理论上它的字体应该比较大,高度为标准高度
///
/// 宽度
/// 是否计算真实值
public TitleViewControl(int i_Width, bool real = false)
{
this.InitSize(i_Width, real);
this.X = ControlCommonResourse.XXLeft;
}
///
/// 做成一个存在于BodyFrameLayout里面的头部提示信息的控件(正常文本字体颜色,文字向左靠齐),
/// 理论上它的字体应该比较大,高度为标准高度,宽度为最大宽度(不含左间距)
///
public TitleViewControl()
{
this.InitSize();
this.X = ControlCommonResourse.XXLeft;
}
}
}