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