Действует только при вводе текста в событии KeyPress - PullRequest
3 голосов
/ 05 марта 2009

У меня есть событие нажатия клавиши, и я хочу, чтобы выпадающий список обрабатывал нажатие клавиши, если ввод не текстовый. И.Е. Если это клавиша «вверх» или «вниз», пусть комбобокс обрабатывает его так, как обычно, но если это пунктуация или алфавитно-цифровое значение, я хочу изменить его.

Я думал, Char.IsControl (e.KeyChar)) справится с задачей, но он не ловит клавиши со стрелками, и для выпадающего списка это важно.

Ответы [ 2 ]

2 голосов
/ 05 марта 2009

Вот пример из предыдущего ответа, который я дал. Оно взято из документации 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;
    }
}
0 голосов
/ 05 августа 2015

Вам не нужно проверять никаких текстовых символов.

Я надеюсь, что следующий код поможет:

void ComboBox_KeyPress(object sender, KeyPressEventArgs e)
{
    if(Char.IsNumber(e.KeyChar))
        ...
    else if(Char.IsLetter(e.KeyChar))
        ...
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...