代码如下:
调用TextBox的KeyPress事件
private void txtLoginId_KeyPress(object sender, KeyPressEventArgs e)
{
//如果输入的不是数字键,也不是回车键、Backspace键,则取消该输入
if (!(Char.IsNumber(e.KeyChar)) && e.KeyChar != (char)13 && e.KeyChar != (char)8)
{
e.Handled = true;
}
标签:C#,KeyChar,文本框,char,&&,输入 From: https://www.cnblogs.com/hezq/p/17254767.html