using System;
using System.Collections.Generic;
using System.Text;
namespace Shared.Phone.UserCenter
{
///
/// 做成一个简单的,只是用来显示数据的普通控件(正常文本字体颜色,文字向左靠齐)
///
public class ViewNormalControl : ButtonCommon
{
///
/// 做成一个简单的,只是用来显示数据的普通控件(正常文本字体颜色,文字向左靠齐)
///
/// 宽度
/// 高度
/// 是否计算真实值
public ViewNormalControl(int i_Width, int i_Height, bool real = false)
{
this.InitSize(i_Width, i_Height, real);
}
///
/// 做成一个简单的,只是用来显示数据的普通控件(正常文本字体颜色,文字向左靠齐),
/// 高度为标准高度
///
/// 宽度
/// 是否计算真实值
public ViewNormalControl(int i_Width, bool real = false)
{
this.InitSize(i_Width, real);
}
}
}