38 references to KeyboardFocusChangedEventHandler
PresentationCore (30)
Core\CSharp\System\Windows\Generated\ContentElement.cs (4)
1778public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 1797public event KeyboardFocusChangedEventHandler GotKeyboardFocus 1816public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 1835public event KeyboardFocusChangedEventHandler LostKeyboardFocus
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
4056public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 4075public event KeyboardFocusChangedEventHandler GotKeyboardFocus 4094public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 4113public event KeyboardFocusChangedEventHandler LostKeyboardFocus
Core\CSharp\System\Windows\Generated\UIElement3D.cs (4)
1484public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 1503public event KeyboardFocusChangedEventHandler GotKeyboardFocus 1522public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 1541public event KeyboardFocusChangedEventHandler LostKeyboardFocus
Core\CSharp\System\Windows\IInputElement.cs (4)
325event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus; 330event KeyboardFocusChangedEventHandler GotKeyboardFocus; 336event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus; 342event KeyboardFocusChangedEventHandler LostKeyboardFocus;
Core\CSharp\System\Windows\Input\FocusChangedEventArgs.cs (2)
69KeyboardFocusChangedEventHandler handler = (KeyboardFocusChangedEventHandler) genericHandler;
Core\CSharp\System\Windows\Input\Keyboard.cs (12)
124public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = EventManager.RegisterRoutedEvent("PreviewGotKeyboardFocus", RoutingStrategy.Tunnel, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 131public static void AddPreviewGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 141public static void RemovePreviewGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 199public static readonly RoutedEvent GotKeyboardFocusEvent = EventManager.RegisterRoutedEvent("GotKeyboardFocus", RoutingStrategy.Bubble, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 206public static void AddGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 216public static void RemoveGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 224public static readonly RoutedEvent PreviewLostKeyboardFocusEvent = EventManager.RegisterRoutedEvent("PreviewLostKeyboardFocus", RoutingStrategy.Tunnel, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 231public static void AddPreviewLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 241public static void RemovePreviewLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 249public static readonly RoutedEvent LostKeyboardFocusEvent = EventManager.RegisterRoutedEvent("LostKeyboardFocus", RoutingStrategy.Bubble, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 256public static void AddLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 266public static void RemoveLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler)
PresentationFramework (8)
src\Framework\System\Windows\Controls\Button.cs (3)
82KeyboardFocusChangedEventHandler focusChangedEventHandler = FocusChangedEventHandlerField.GetValue(b); 305private static readonly UncommonField<KeyboardFocusChangedEventHandler> FocusChangedEventHandlerField = new UncommonField<KeyboardFocusChangedEventHandler>();
src\Framework\System\Windows\Controls\PopupControlService.cs (2)
1194internal KeyboardFocusChangedEventHandler FocusChangedEventHandler 1216private KeyboardFocusChangedEventHandler _focusChangedEventHandler;
src\Framework\System\Windows\Input\KeyboardNavigation.cs (3)
300internal event KeyboardFocusChangedEventHandler FocusChanged 323KeyboardFocusChangedEventHandler handler = item as KeyboardFocusChangedEventHandler;