Answers for "wpf unfocus any textbox"

C#
0

textbox gotfocus wpf

private void tb_GotFocus(object sender, RoutedEventArgs e)
{
  TextBox tb = sender as TextBox;
  if (tb != null) {
    tb.SelectAll(); //select all text in TextBox
  }
}
Posted by: Guest on June-01-2020

C# Answers by Framework

Browse Popular Code Answers by Language