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