14 references to PreviewGotKeyboardFocusEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1697public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = Keyboard.PreviewGotKeyboardFocusEvent.AddOwner(_typeofThis); 1704add { AddHandler(Keyboard.PreviewGotKeyboardFocusEvent, value, false); } 1705remove { RemoveHandler(Keyboard.PreviewGotKeyboardFocusEvent, value); }
System\Windows\Generated\UIElement.cs (4)
771EventManager.RegisterClassHandler(type, Keyboard.PreviewGotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(UIElement.OnPreviewGotKeyboardFocusThunk), false); 3650public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = Keyboard.PreviewGotKeyboardFocusEvent.AddOwner(_typeofThis); 3657add { AddHandler(Keyboard.PreviewGotKeyboardFocusEvent, value, false); } 3658remove { RemoveHandler(Keyboard.PreviewGotKeyboardFocusEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1427public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = Keyboard.PreviewGotKeyboardFocusEvent.AddOwner(_typeofThis); 1434add { AddHandler(Keyboard.PreviewGotKeyboardFocusEvent, value, false); } 1435remove { RemoveHandler(Keyboard.PreviewGotKeyboardFocusEvent, value); }
System\Windows\Input\Keyboard.cs (2)
128UIElement.AddHandler(element, PreviewGotKeyboardFocusEvent, handler); 138UIElement.RemoveHandler(element, PreviewGotKeyboardFocusEvent, handler);
System\Windows\Input\KeyboardDevice.cs (1)
295RoutedEvent = Keyboard.PreviewGotKeyboardFocusEvent,
PresentationFramework (1)
System\Windows\FrameworkElement.cs (1)
2370EventManager.RegisterClassHandler(_typeofThis, Keyboard.PreviewGotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnPreviewGotKeyboardFocus));