7 references to GotFocusEvent
PresentationCore (3)
Core\CSharp\System\Windows\UIElement.cs (3)
3527
add { AddHandler(
GotFocusEvent
, value); }
3528
remove { RemoveHandler(
GotFocusEvent
, value); }
3571
uiElement.OnGotFocus(new RoutedEventArgs(
GotFocusEvent
, uiElement));
PresentationFramework (4)
src\Framework\System\Windows\Controls\Calendar.cs (1)
89
EventManager.RegisterClassHandler(typeof(Calendar), UIElement.
GotFocusEvent
, new RoutedEventHandler(OnGotFocus));
src\Framework\System\Windows\Controls\ComboBox.cs (1)
64
EventManager.RegisterClassHandler(typeof(ComboBox), UIElement.
GotFocusEvent
, new RoutedEventHandler(OnGotFocus)); // call us even if textbox in the style get focus
src\Framework\System\Windows\Controls\DataGridCell.cs (1)
48
EventManager.RegisterClassHandler(typeof(DataGridCell),
GotFocusEvent
, new RoutedEventHandler(OnAnyGotFocus), true);
src\Framework\System\Windows\Controls\DatePicker.cs (1)
91
EventManager.RegisterClassHandler(typeof(DatePicker), UIElement.
GotFocusEvent
, new RoutedEventHandler(OnGotFocus));