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