gpt4 book ai didi

c# - 仅对 KeyPress 事件中的文本输入起作用

转载 作者:行者123 更新时间:2023-11-30 17:24:44 34 4
gpt4 key购买 nike

我有一个按键事件,如果输入不是文本,我希望组合框处理按键事件。 IE。如果是向上键或向下键,让组合框像往常一样处理它,但如果是标点符号或字母数字,我想对其进行操作。

我认为 Char.IsControl(e.KeyChar)) 可以解决问题,但它无法捕获箭头键,对于组合框来说,这很重要。

最佳答案

这是我之前给出的答案中的一个例子。它来自 MSDN 文档,我认为您应该能够根据您要允许或禁止的字符很好地修改它:

// Boolean flag used to determine when a character other than a number is entered.
private bool nonNumberEntered = false;

// Handle the KeyDown event to determine the type of character entered into the control.
private void textBox1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
// Initialize the flag to false.
nonNumberEntered = false;

// Determine whether the keystroke is a number from the top of the keyboard.
if (e.KeyCode < Keys.D0 || e.KeyCode > Keys.D9)
{
// Determine whether the keystroke is a number from the keypad.
if (e.KeyCode < Keys.NumPad0 || e.KeyCode > Keys.NumPad9)
{
// Determine whether the keystroke is a backspace.
if(e.KeyCode != Keys.Back)
{
// A non-numerical keystroke was pressed.
// Set the flag to true and evaluate in KeyPress event.
nonNumberEntered = true;
}
}
}
//If shift key was pressed, it's not a number.
if (Control.ModifierKeys == Keys.Shift) {
nonNumberEntered = true;
}
}

// This event occurs after the KeyDown event and can be used to prevent
// characters from entering the control.
private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
// Check for the flag being set in the KeyDown event.
if (nonNumberEntered == true)
{
// Stop the character from being entered into the control since it is non-numerical.
e.Handled = true;
}
}

关于c# - 仅对 KeyPress 事件中的文本输入起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/612572/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com