Type Uppercase String in Windows Phone TextBox using WPF

  1. public MainPage()   
  2. {  
  3.   
  4.     InitializeComponent();  
  5.     txtPanno.TextChanged += txtPanno_TextChanged;  
  6.   
  7. }  
  8.   
  9. void TxtPanno_TextChanged(object sender, TextChangedEventArgs e)   
  10. {  
  11.   
  12.     TxtPanno.Text = txtPanno.Text.ToUpper();  
  13.     TxtPanno.SelectionStart = TxtPanno.Text.Length;  
  14.   
  15. }