| 123456789101112131415161718192021222324 |
-
- using System.Drawing;
- using System.Windows.Forms;
- namespace Dongke.WinForm.Controls
- {
- /// <summary>
- /// 电话输入文本框
- /// </summary>
- [ToolboxBitmap(typeof(TextBox))]
- public class TxtPhone : TextBoxCodeBase
- {
- #region 构造函数
- /// <summary>
- /// 电话输入文本框
- /// </summary>
- public TxtPhone()
- {
- this.Rejected = "[^0-9 \\-()]";
- //this.Regular = @"^[1-9]\d{5}$";
- }
- #endregion
- }
- }
|