C#的winform中如何控制TextBox中只能输入数字,包括0

请各位前辈指教一下,最好把代码写上,给我参考一下 谢谢

第1个回答  推荐于2016-11-11
这个是一个用正则表达式实现的整数验证,但你使用时最好在提交的按钮事件中去校验,
public static bool IsIntNum(string str,bool msg)
{
System.Text.RegularExpressions.Regex reg1
= new System.Text.RegularExpressions.
Regex(@"^[-]?[1-9]{1}\d*$|^[0]{1}$");
bool ismatch=reg1.IsMatch(str);
if(!ismatch)
MessageBox.Show("您输入的数字不是整数!", "操作提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
return ismatch;
}
注意,这里调用了MessageBox对象,必须在引用时引用Windows.form本回答被网友采纳
第2个回答  2012-07-03
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
e.Handled = true;
if (e.KeyChar >= '0' && e.KeyChar <= '9')
{
e.Handled = false;
}
}
第3个回答  2012-07-03
public static function CheckNumber(strValue:String):Boolean
{
var regTextNumber:RegExp = /^(\d)*$/;
return regTextNumber.test(strValue);
}

这个方法就是验证数字的!
相似回答