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