如何使文本框在C#中使用keydown事件只接收数字键值? [英] How to make TextBox to receive only number key values using KeyDown Event in C#?

查看:1354
本文介绍了如何使文本框在C#中使用keydown事件只接收数字键值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这段代码在我的表单更新 textBox1.Text 的两倍,每当数字键被按下。

 私人无效textBox1_KeyDown(对象发件人,发送KeyEventArgs E){
//MessageBox.Show();
如果(char.IsNumber((char)的e.KeyCode)){
textBox1.Text + =(char)的e.KeyCode;
}
}



解释为什么,如果你能?
修改代码或提供我这个更好的解决方案。



输入(在TextBox1中):



  54321 



输出:



  1234554321 


解决方案

当你按一个键,一个字符已经添加到您的文本框。然后运行下面的代码,如果该键表示一个数字,你再追加它:

 如果(char.IsNumber( (焦)e.KeyCode)){
textBox1.Text + =(char)的e.KeyCode;
}

如果要抑制,这不是一个数字的任何键,就可以使用此而不是:

  e.SuppressKeyPress = char.IsNumber((char)的e.KeyCode); 


This code in my form updates the textBox1.Text twice whenever number keys are pressed.

private void textBox1_KeyDown( object sender, KeyEventArgs e ) {
     //MessageBox.Show();
     if( char.IsNumber((char)e.KeyCode) ) {
           textBox1.Text += (char)e.KeyCode;
     }
}

Explain why if you can? Modify the code or provide me a better solution for this.

Input ( in textbox1 ):

54321

Output:

1234554321

解决方案

When you press a key, a character is already appended to your TextBox. Then you run the following code and, if the key represents a number, you append it again:

if (char.IsNumber((char)e.KeyCode)) {
    textBox1.Text += (char)e.KeyCode;
}

If you want to suppress any key that's not a number, you could use this instead:

e.SuppressKeyPress = !char.IsNumber((char)e.KeyCode);

这篇关于如何使文本框在C#中使用keydown事件只接收数字键值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆