using Shared;
using System;
using System.Collections.Generic;
using System.Text;
namespace HDL_ON.Stan
{
///
/// 做成一个输入框控件,标准字体颜色(0xFF798394),文字向左靠齐,14号字
///
public class TextInputControl : TextInputBase
{
#region ■ 变量声明___________________________
#endregion
#region ■ 初始化_____________________________
///
/// 做成一个输入框控件,标准字体颜色(0xFF798394),文字向左靠齐,14号字
///
/// 宽度
/// 高度
/// 是否计算真实值
public TextInputControl(int i_Width, int i_Height, bool real = false)
{
this.InitSize(i_Width, i_Height, real);
}
///
/// 做成一个输入框控件(正常文本字体颜色),高度为标准高度
///
/// 宽度
/// 是否计算真实值
public TextInputControl(int i_Width, bool real = false)
{
this.InitSize(i_Width, real);
}
#endregion
}
}