16 references to PreviewGotKeyboardFocusEvent
PresentationCore (13)
Core\CSharp\System\Windows\Generated\ContentElement.cs (3)
1773
public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = Keyboard.
PreviewGotKeyboardFocusEvent
.AddOwner(_typeofThis);
1780
add { AddHandler(Keyboard.
PreviewGotKeyboardFocusEvent
, value, false); }
1781
remove { RemoveHandler(Keyboard.
PreviewGotKeyboardFocusEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
852
EventManager.RegisterClassHandler(type, Keyboard.
PreviewGotKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(UIElement.OnPreviewGotKeyboardFocusThunk), false);
4051
public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = Keyboard.
PreviewGotKeyboardFocusEvent
.AddOwner(_typeofThis);
4058
add { AddHandler(Keyboard.
PreviewGotKeyboardFocusEvent
, value, false); }
4059
remove { RemoveHandler(Keyboard.
PreviewGotKeyboardFocusEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement3D.cs (3)
1479
public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = Keyboard.
PreviewGotKeyboardFocusEvent
.AddOwner(_typeofThis);
1486
add { AddHandler(Keyboard.
PreviewGotKeyboardFocusEvent
, value, false); }
1487
remove { RemoveHandler(Keyboard.
PreviewGotKeyboardFocusEvent
, value); }
Core\CSharp\System\Windows\Input\Keyboard.cs (2)
133
UIElement.AddHandler(element,
PreviewGotKeyboardFocusEvent
, handler);
143
UIElement.RemoveHandler(element,
PreviewGotKeyboardFocusEvent
, handler);
Core\CSharp\System\Windows\Input\KeyboardDevice.cs (1)
375
previewGotFocus.RoutedEvent=Keyboard.
PreviewGotKeyboardFocusEvent
;
PresentationFramework (1)
src\Framework\System\Windows\FrameworkElement.cs (1)
2387
EventManager.RegisterClassHandler(_typeofThis, Keyboard.
PreviewGotKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(OnPreviewGotKeyboardFocus));
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\UserInterface\FocusScopeManager.cs (2)
65
EventManager.RegisterClassHandler(typeof(Window), Keyboard.
PreviewGotKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(FocusScopeManager.HandlePreviewGotKeyboardFocus), true);
66
EventManager.RegisterClassHandler(typeof(Popup), Keyboard.
PreviewGotKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(FocusScopeManager.HandlePreviewGotKeyboardFocus), true);