Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. if(ch <='я' && ch>='а' || ch>='A' && ch<='Я')
  2. textBox.Text.Remove(textBox.Text.Lenght-1);
  3.  
  4. private void TextBox_PreviewTextInput(object sender, TextCompositionEventArgs e)
  5. {
  6. e.Handled = !(Char.IsDigit(e.Text, 0))
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement