7 references to GotFocusEvent
PresentationCore (3)
Core\CSharp\System\Windows\UIElement.cs (3)
3527add { AddHandler(GotFocusEvent, value); } 3528remove { RemoveHandler(GotFocusEvent, value); } 3571uiElement.OnGotFocus(new RoutedEventArgs(GotFocusEvent, uiElement));
PresentationFramework (4)
src\Framework\System\Windows\Controls\Calendar.cs (1)
89EventManager.RegisterClassHandler(typeof(Calendar), UIElement.GotFocusEvent, new RoutedEventHandler(OnGotFocus));
src\Framework\System\Windows\Controls\ComboBox.cs (1)
64EventManager.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)
48EventManager.RegisterClassHandler(typeof(DataGridCell), GotFocusEvent, new RoutedEventHandler(OnAnyGotFocus), true);
src\Framework\System\Windows\Controls\DatePicker.cs (1)
91EventManager.RegisterClassHandler(typeof(DatePicker), UIElement.GotFocusEvent, new RoutedEventHandler(OnGotFocus));