如何使文本框仅接受字母字符

时间:2009-04-26 06:47:03

标签: c# winforms

我有一个带有maskedtextbox控件的Windows窗体应用程序,我只想接受字母值。

理想情况下,按下按字母键以外的任何其他键都不会产生任何结果或立即向用户提供有关无效字符的反馈。

7 个答案:

答案 0 :(得分:6)

在每个可以想象的编程论坛上,这个问题可能已被问及并回答了一百万次。所提供的每个答案都具有与所述要求不同的区别。

由于您使用的是MaskedTextBox,因此您可以使用其他验证功能,而不需要处理按键。您可以简单地将Mask属性设置为“L”(需要字符)或“?” (可选字符)。为了向用户显示输入不可接受的反馈,您可以使用BeepOnError属性或添加工具提示来显示错误消息。应该在MaskedInputRejected事件处理程序中实现此反馈机制。

MaskedTextBox控件提供ValidatingType属性来检查传递Mask的要求的输入,但可能不是正确的数据类型。在此类型验证后引发TypeValidationCompleted事件,您可以处理它以确定结果。

如果您仍需要处理按键事件,请继续阅读......!

我建议您使用的方法是,不是处理KeyDown事件(表面上不需要高级密钥处理功能)或使用正则表达式来匹配输入(坦率地说,过度杀伤),我只是简单地说使用Char结构的内置属性。

private void maskedTextBox1_KeyPress(object sender, KeyPressEventArgs e)
{
  Char pressedKey = e.KeyChar;
  if (Char.IsLetter(pressedKey) || Char.IsSeparator(pressedKey) || Char.IsPunctuation(pressedKey))
  {
    // Allow input.
    e.Handled = false
  }
  else
    // Stop the character from being entered into the control since not a letter, nor punctuation, nor a space.
    e.Handled = true;
  }
}

请注意,此代码段还允许您处理标点符号和分隔符键。

答案 1 :(得分:4)

From MSDN(此代码显示如何处理KeyDown事件以检查输入的字符。在此示例中,它仅检查数字输入。您可以修改它以便它可用于按字母顺序排列输入而不是数字):

// 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;
    }
}

答案 2 :(得分:3)

此代码将区分字母字符键和非字母键:

private void maskedTextBox1_KeyPress(object sender, KeyPressEventArgs e)
{
    if (Regex.IsMatch(e.KeyChar.ToString(), @"\p{L}"))
    {
        // this is a letter
    }
    else
    {
        // this is NOT a letter
    }
}

更新:请注意,上述正则表达式模式仅匹配字母字符,因此不允许使用空格,逗号,点等。为了允许更多种类的字符,您需要将它们添加到模式中:

// allow alphabetic characters, dots, commas, semicolon, colon 
// and whitespace characters
if (Regex.IsMatch(e.KeyChar.ToString(), @"[\p{L}\.,;:\s]"))

答案 3 :(得分:3)

// This is  to allow only numbers.
// This Event Trigger, When key press event occures ,and it only allows the Number and Controls., 
private void txtEmpExp_KeyPress(object sender, KeyPressEventArgs e)
{
    if(Char.IsControl(e.KeyChar)!=true&&Char.IsNumber(e.KeyChar)==false)
    {
        e.Handled = true;
    }
}

//At key press event it will allows only the Characters and Controls.
private void txtEmpLocation_KeyPress(object sender, KeyPressEventArgs e)
{
    if (Char.IsControl(e.KeyChar) != true && Char.IsNumber(e.KeyChar) == true)
    {
        e.Handled = true;
    }
}

答案 4 :(得分:1)

//添加一个文本框选择它&amp;转到活动&amp;在事件列表中双击“按键”事件。

        if (!char.IsLetter(e.KeyChar))
        {
            MessageBox.Show("Enter only characters");
        }
    }

答案 5 :(得分:0)

这对我有用:)

    private void txt_KeyPress(object sender, KeyPressEventArgs e)
    {
        e.Handled = !((e.KeyChar != 'ñ' && e.KeyChar != 'Ñ') && char.IsLetter(e.KeyChar));
    }

答案 6 :(得分:0)

尝试this代码

    private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
    {
        e.Handled = !(char.IsLetter(e.KeyChar) || e.KeyChar == (char)Keys.Back || e.KeyChar == (char)Keys.Space);
    }