/******************************************************************************* * Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential * 类的信息: * 1.程序名称:C_TXT_PostalCode.cs * 2.功能描述:邮编输入文本框 * 编辑履历: * 作者 日期 版本 修改内容 * 陈晓野 2014/09/29 1.00 新建 *******************************************************************************/ using System; namespace Dongke.IBOSS.PRD.Basics.BaseControls { /// /// 邮编输入文本框 /// public partial class C_TXT_PostalCode : DKTextBoxBase { #region 构造函数 /// /// 构造函数 /// public C_TXT_PostalCode() { InitializeComponent(); // 屏蔽输入法 this.ImeMode = System.Windows.Forms.ImeMode.Off; this.RejectChars = "[^0-9]"; this.MinLength = 6; this.MaxLength = 6; this.FixChars = @"^\d{6}$"; this.FixPatternMessage = "请输入6位数字"; } #endregion } }