取消按键事件

Asi*_*jad 7 c# wpf

如何返回密钥?,意思是如果我只想在文本框中只允许整数值,我怎么能不允许用户不输入非整数,关于,KeyPress事件,我知道有其他方法如表达式匹配字符串值,但我不想为文本框分配无效值.

if (( value >0 a&&(value <=9)) then 
    assigned
else 
    return
Run Code Online (Sandbox Code Playgroud)

Rvd*_*vdK 19

使用Handled Property

e.Handled = true;
Run Code Online (Sandbox Code Playgroud)

来自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;
    }
}
Run Code Online (Sandbox Code Playgroud)


m.z*_*zam 7

您可以使用如下的按键事件.使用e.Handled为true取消用户输入

    private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
    {
        if (!Char.IsDigit(e.KeyChar)) e.Handled = true;
    }
Run Code Online (Sandbox Code Playgroud)


小智 7

创建一个字符串,其中包含允许用户输入的字符.

使用KeyDownKeyUp处理特殊键

private void tbN1_KeyPress(object sender, KeyPressEventArgs e)
{
    String sKeys = "1234567890ABCDEF";
    if (!sKeys.Contains(e.KeyChar.ToString().ToUpper()))
        e.Handled = true;
}
Run Code Online (Sandbox Code Playgroud)