标签:常见问题 教学 robot com image 视频 event txt 允许
//限制文本框的输入
private void txtQuestionScore_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar != ‘\b‘)//这是允许输入退格键
{
if ((e.KeyChar < ‘0‘) || (e.KeyChar > ‘9‘))//这是允许输入0-9数字
{
e.Handled = true;
}
}
}
?
?
更多教学视频和资料下载,欢迎关注以下信息:
我的优酷空间:
http://i.youku.com/acetaohai123
?
我的在线论坛:
http://csrobot.gz01.bdysite.com/
?
问题交流:
QQ:910358960
?
?
C#.NET常见问题(FAQ)-如何让文本框textbox内容限制为数字
标签:常见问题 教学 robot com image 视频 event txt 允许
原文地址:http://www.cnblogs.com/acetaohai123/p/7623483.html