阿宽

Nothing is more powerful than habit!
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

自定義Text控件控件,使其衹能輸入"0123456789"

Posted on 2007-09-07 15:48  宽田  阅读(370)  评论(0编辑  收藏  举报
自定義Text控件控件,使其衹能輸入"0123456789"

自定義一個Text控件,在其中加入以下代碼:

        #region 重寫事件
        
string sKeys = "0123456789";
        
protected override void OnKeyPress(KeyPressEventArgs e)
        {
            
base.OnKeyPress(e);

            
if ((this.SelectedText == this.Text) && this.SelectedText != "")
            {
                
if (sKeys.IndexOf(e.KeyChar) < 0)
                {
                    e.Handled 
= true;
                }
                
return;
            }          
        }   
        
#endregion