限制textbox中的内容

在应用系统的开发中,我们经常需要限制用户的输入,以高效无误的开展工作,比如说,电话号码,仅能位数字等。对于某一个textbox控件的keypress事件编程,可以找到keypress双击,具体代码如下:

private void textBox1_KeyPress(object sender, KeyPressEventArgs e)

{

  if((e.KeyChar != 8 && !char.IsDigit(e.KeyChar))&&e.KeyChar != 13)

    {

          messageBox.show("只允许输入数字");

           e.handled = true;   

     }

}

 

posted @ 2012-07-19 21:20  美丽的矩阵  阅读(160)  评论(0编辑  收藏  举报