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