Как запретить ввод букв?
Категория: .NET
2011-09-08 22:16:33
code: #csharp
private void richTextBox1_KeyPress(object sender, KeyPressEventArgs e) { if (!Char.IsDigit(e.KeyChar)) e.Handled = true; }
Поделиться:
private void richTextBox1_KeyPress(object sender, KeyPressEventArgs e) { if (!Char.IsDigit(e.KeyChar)) e.Handled = true; }