23 references to GotKeyboardFocusEvent
PresentationCore (14)
System\Windows\Generated\ContentElement.cs (3)
1732public static readonly RoutedEvent GotKeyboardFocusEvent = Keyboard.GotKeyboardFocusEvent.AddOwner(_typeofThis); 1739add { AddHandler(Keyboard.GotKeyboardFocusEvent, value, false); } 1740remove { RemoveHandler(Keyboard.GotKeyboardFocusEvent, value); }
System\Windows\Generated\UIElement.cs (4)
788EventManager.RegisterClassHandler(type, Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(UIElement.OnGotKeyboardFocusThunk), false); 3685public static readonly RoutedEvent GotKeyboardFocusEvent = Keyboard.GotKeyboardFocusEvent.AddOwner(_typeofThis); 3692add { AddHandler(Keyboard.GotKeyboardFocusEvent, value, false); } 3693remove { RemoveHandler(Keyboard.GotKeyboardFocusEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1453public static readonly RoutedEvent GotKeyboardFocusEvent = Keyboard.GotKeyboardFocusEvent.AddOwner(_typeofThis); 1460add { AddHandler(Keyboard.GotKeyboardFocusEvent, value, false); } 1461remove { RemoveHandler(Keyboard.GotKeyboardFocusEvent, value); }
System\Windows\Input\Command\CommandDevice.cs (1)
115e.StagingItem.Input.RoutedEvent == Keyboard.GotKeyboardFocusEvent ||
System\Windows\Input\Keyboard.cs (2)
211UIElement.AddHandler(element, GotKeyboardFocusEvent, handler); 221UIElement.RemoveHandler(element, GotKeyboardFocusEvent, handler);
System\Windows\Input\KeyboardDevice.cs (1)
481gotFocus.RoutedEvent=Keyboard.GotKeyboardFocusEvent;
PresentationFramework (7)
System\Windows\Controls\ItemsControl.cs (1)
66EventManager.RegisterClassHandler(typeof(ItemsControl), Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotFocus));
System\Windows\Controls\ListBox.cs (1)
80EventManager.RegisterClassHandler(typeof(ListBox), Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotKeyboardFocus));
System\Windows\Controls\PopupControlService.cs (1)
132else if (e.StagingItem.Input.RoutedEvent == Keyboard.GotKeyboardFocusEvent)
System\windows\Documents\TextEditor.cs (1)
398EventManager.RegisterClassHandler(controlType, Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotKeyboardFocus));
System\Windows\FrameworkContentElement.cs (1)
113EventManager.RegisterClassHandler(typeof(FrameworkContentElement), Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotKeyboardFocus));
System\Windows\FrameworkElement.cs (1)
2391EventManager.RegisterClassHandler(_typeofThis, Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotKeyboardFocus));
System\Windows\Interop\ActiveXHost.cs (1)
88EventManager.RegisterClassHandler(typeof(ActiveXHost), Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotFocus));
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonComboBox.cs (2)
1606_firstGallery.RemoveHandler(Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGalleryGotKeyboardFocus)); 1619_firstGallery.AddHandler(Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGalleryGotKeyboardFocus), true);