我是WinForms的初学者,所以我想学习一下,

如何禁用文本框中的空格键?

private void TextBox1_KeyPress(object sender, KeyPressEventArgs e)
{
    // MyTextBox.Text ...?
}


任何帮助将不胜感激。

最佳答案

那就是您想要的,不允许所有空格

    private void TextBox_KeyPress(object sender, KeyPressEventArgs e)
    {
         e.Handled = (e.KeyChar == (char)Keys.Space);
    }

关于c# - 禁用文本框中按键的空白,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20115543/

10-08 22:45