Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private void textBox_TextChanged(object sender, EventArgs e)
- {
- if (System.Text.RegularExpressions.Regex.IsMatch(textBox.Text, "[^0-9]"))
- {
- MessageBox.Show("Вводить можно только цифры!");
- textBox.Text = textBox.Text.Remove(textBox.Text.Length - 1);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement