7 references to GotFocusEvent
PresentationCore (3)
System\Windows\UIElement.cs (3)
3492
add { AddHandler(
GotFocusEvent
, value); }
3493
remove { RemoveHandler(
GotFocusEvent
, value); }
3536
uiElement.OnGotFocus(new RoutedEventArgs(
GotFocusEvent
, uiElement));
PresentationFramework (4)
System\Windows\Controls\Calendar.cs (1)
88
EventManager.RegisterClassHandler(typeof(Calendar), UIElement.
GotFocusEvent
, new RoutedEventHandler(OnGotFocus));
System\Windows\Controls\ComboBox.cs (1)
63
EventManager.RegisterClassHandler(typeof(ComboBox), UIElement.
GotFocusEvent
, new RoutedEventHandler(OnGotFocus)); // call us even if textbox in the style get focus
System\Windows\Controls\DataGridCell.cs (1)
50
EventManager.RegisterClassHandler(typeof(DataGridCell),
GotFocusEvent
, new RoutedEventHandler(OnAnyGotFocus), true);
System\Windows\Controls\DatePicker.cs (1)
90
EventManager.RegisterClassHandler(typeof(DatePicker), UIElement.
GotFocusEvent
, new RoutedEventHandler(OnGotFocus));