using System;
using System.Collections.Generic;
using System.Text;
namespace Shared.Phone.UserCenter
{
    /// 
    /// 做成一个输入框控件
    /// 
    public class TextInputControl : TextInputBase
    {
        #region ■ 变量声明___________________________
        #endregion
        #region ■ 初始化_____________________________
        /// 
        /// 做成一个输入框控件(正常文本字体颜色)
        /// 
        /// 宽度
        /// 高度
        /// 是否计算真实值
        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
    }
}