C#实现windows form限制文本框输入
通过本例,可以掌握:
如何限制文本输入框?
用户在Windows窗体应用程序中只有数字字符的输入。
当用户开始在输入框中输入信息时,textBoxInput_keyPress被调用。
例子:
复制代码 代码示例:
private void textBoxInput_KeyPress(object sender,KeyPressEventArgs e)
{
const char Delete = (char)8;
e.Handled = !Char.IsDigit(e.KeyChar) && e.KeyChar != Delete;
}