14 references to PreviewGotKeyboardFocusEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1698public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = Keyboard.PreviewGotKeyboardFocusEvent.AddOwner(_typeofThis); 1705add { AddHandler(Keyboard.PreviewGotKeyboardFocusEvent, value, false); } 1706remove { RemoveHandler(Keyboard.PreviewGotKeyboardFocusEvent, value); }
System\Windows\Generated\UIElement.cs (4)
772EventManager.RegisterClassHandler(type, Keyboard.PreviewGotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(UIElement.OnPreviewGotKeyboardFocusThunk), false); 3651public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = Keyboard.PreviewGotKeyboardFocusEvent.AddOwner(_typeofThis); 3658add { AddHandler(Keyboard.PreviewGotKeyboardFocusEvent, value, false); } 3659remove { RemoveHandler(Keyboard.PreviewGotKeyboardFocusEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1426public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = Keyboard.PreviewGotKeyboardFocusEvent.AddOwner(_typeofThis); 1433add { AddHandler(Keyboard.PreviewGotKeyboardFocusEvent, value, false); } 1434remove { RemoveHandler(Keyboard.PreviewGotKeyboardFocusEvent, value); }
System\Windows\Input\Keyboard.cs (2)
129UIElement.AddHandler(element, PreviewGotKeyboardFocusEvent, handler); 139UIElement.RemoveHandler(element, PreviewGotKeyboardFocusEvent, handler);
System\Windows\Input\KeyboardDevice.cs (1)
296RoutedEvent = Keyboard.PreviewGotKeyboardFocusEvent,
PresentationFramework (1)
System\Windows\FrameworkElement.cs (1)
2371EventManager.RegisterClassHandler(_typeofThis, Keyboard.PreviewGotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnPreviewGotKeyboardFocus));