using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Shared.Phone
|
{
|
/// <summary>
|
/// 平凡普通的控件,基本只是用来显示✩
|
/// </summary>
|
public class NormalViewControl : ButtonBase
|
{
|
/// <summary>
|
/// 平凡普通的控件,基本只是用来显示(正常文本字体颜色,文字向左靠齐)
|
/// </summary>
|
/// <param name="i_Width">宽度</param>
|
/// <param name="i_Height">高度</param>
|
/// <param name="real">是否计算真实值</param>
|
public NormalViewControl(int i_Width, int i_Height, bool real)
|
{
|
this.InitSize(i_Width, i_Height, real);
|
}
|
|
/// <summary>
|
/// 平凡普通的控件,基本只是用来显示(正常文本字体颜色,文字向左靠齐),高度为标准高度
|
/// </summary>
|
/// <param name="i_Width">宽度</param>
|
/// <param name="real">是否计算真实值</param>
|
public NormalViewControl(int i_Width, bool real)
|
{
|
this.InitSize(i_Width, real);
|
}
|
}
|
}
|