diff --git a/src/Eto.Wpf/CustomControls/FontDialog/fontchooser.xaml.cs b/src/Eto.Wpf/CustomControls/FontDialog/fontchooser.xaml.cs old mode 100644 new mode 100755 index 450c7dab33..7e3942f31c --- a/src/Eto.Wpf/CustomControls/FontDialog/fontchooser.xaml.cs +++ b/src/Eto.Wpf/CustomControls/FontDialog/fontchooser.xaml.cs @@ -226,6 +226,12 @@ void FontChooser_Loaded (object sender, RoutedEventArgs e) // Schedule background updates. _populated = true; ScheduleUpdate (); + + // Make using the keyboard easier by setting focus initially and selecting all + sizeTextBox.GotFocus += (sender, e) => sizeTextBox.SelectAll(); + fontFamilyTextBox.GotFocus += (sender, e) => fontFamilyTextBox.SelectAll(); + + fontFamilyTextBox.Focus(); } #endregion