我有以下代码只允许文本框中的字母:
private void TextBox1_KeyPress(object sender, KeyPressEventArgs e)
{
Char pressedKey = e.KeyChar;
if (Char.IsLetter(pressedKey))
{
// Allow input.
e.Handled = false
}
else
e.Handled = true;
}
}
我怎样才能让退格键起作用,因为它不允许我在输入后删除字符