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