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