| 12345678910111213141516171819202122232425262728293031323334353637 |
- /*******************************************************************************
- * Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:C_TXT_Tel.cs
- * 2.功能描述:电话输入文本框
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 陈晓野 2014/09/29 1.00 新建
- *******************************************************************************/
- using System;
- namespace Dongke.IBOSS.PRD.Basics.BaseControls
- {
- /// <summary>
- /// 电话输入文本框
- /// </summary>
- public partial class C_TXT_Tel : DKTextBoxBase
- {
- #region 构造函数
- /// <summary>
- /// 构造函数
- /// </summary>
- public C_TXT_Tel()
- {
- InitializeComponent();
- // 屏蔽输入法
- this.ImeMode = System.Windows.Forms.ImeMode.Off;
- this.RejectChars = "[^0-9+()-]";
- this.FixChars = @"((\d{11})|^((\d{7,8})|(\d{4}|\d{3})-(\d{7,8})|(\d{4}|\d{3})-(\d{7,8})-(\d{4}|\d{3}|\d{2}|\d{1})|(\d{7,8})-(\d{4}|\d{3}|\d{2}|\d{1}))$)";
- this.FixPatternMessage = "请输入正确的电话号码";
- }
- #endregion
- }
- }
|