| 1234567891011121314151617181920212223 |
-
- using System.Drawing;
- using System.Windows.Forms;
- namespace Dongke.WinForm.Controls
- {
- /// <summary>
- /// 数字输入文本框(数字)
- /// </summary>
- [ToolboxBitmap(typeof(TextBox))]
- public class TxtDigital : TextBoxCodeBase
- {
- #region 构造函数
- /// <summary>
- /// 数字输入文本框(数字)
- /// </summary>
- public TxtDigital()
- {
- this.Rejected = "[^0-9]";
- }
- #endregion
- }
- }
|