14 references to PreviewGotKeyboardFocusEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1713
public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = Keyboard.
PreviewGotKeyboardFocusEvent
.AddOwner(_typeofThis);
1720
add { AddHandler(Keyboard.
PreviewGotKeyboardFocusEvent
, value, false); }
1721
remove { RemoveHandler(Keyboard.
PreviewGotKeyboardFocusEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
787
EventManager.RegisterClassHandler(type, Keyboard.
PreviewGotKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(UIElement.OnPreviewGotKeyboardFocusThunk), false);
3666
public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = Keyboard.
PreviewGotKeyboardFocusEvent
.AddOwner(_typeofThis);
3673
add { AddHandler(Keyboard.
PreviewGotKeyboardFocusEvent
, value, false); }
3674
remove { RemoveHandler(Keyboard.
PreviewGotKeyboardFocusEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1434
public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = Keyboard.
PreviewGotKeyboardFocusEvent
.AddOwner(_typeofThis);
1441
add { AddHandler(Keyboard.
PreviewGotKeyboardFocusEvent
, value, false); }
1442
remove { RemoveHandler(Keyboard.
PreviewGotKeyboardFocusEvent
, value); }
System\Windows\Input\Keyboard.cs (2)
136
UIElement.AddHandler(element,
PreviewGotKeyboardFocusEvent
, handler);
146
UIElement.RemoveHandler(element,
PreviewGotKeyboardFocusEvent
, handler);
System\Windows\Input\KeyboardDevice.cs (1)
305
previewGotFocus.RoutedEvent=Keyboard.
PreviewGotKeyboardFocusEvent
;
PresentationFramework (1)
System\Windows\FrameworkElement.cs (1)
2390
EventManager.RegisterClassHandler(_typeofThis, Keyboard.
PreviewGotKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(OnPreviewGotKeyboardFocus));