/******************************************************************************* * Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential * 类的信息: * 1.程序名称:C_TXT_IDCard.cs * 2.功能描述:身份证输入文本框 * 编辑履历: * 作者 日期 版本 修改内容 * 陈晓野 2014/09/29 1.00 新建 *******************************************************************************/ using System; namespace Dongke.IBOSS.PRD.Basics.BaseControls { /// /// 身份证输入文本框 /// public partial class C_TXT_IDCard : DKTextBoxBase { #region 构造函数 /// /// 构造函数 /// public C_TXT_IDCard() { InitializeComponent(); base.Text = string.Empty; // 屏蔽输入法 this.ImeMode = System.Windows.Forms.ImeMode.Off; this.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper; this.RejectChars = "[^xX0-9]"; this.FixChars = @"^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$"; this.FixPatternMessage = "请输入正确身份证格式"; } #endregion } }