C#, .NET, начинающим и не только's Journal
[Most Recent Entries]
[Calendar View]
[Friends View]
Wednesday, April 6th, 2016
Time |
Event |
12:21a |
Ввод только чисел в текстовое поле
private void txtNumberField_KeyPress(object sender, KeyPressEventArgs e)
{
//ввод только цифр
if (!(Char.IsDigit(e.KeyChar)))
{
if (e.KeyChar != (char)Keys.Back)
{
e.Handled = true;
}
}
}
|
|