36 references to KeyboardFocusChangedEventHandler
PresentationCore (30)
System\Windows\Generated\ContentElement.cs (4)
1702public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 1721public event KeyboardFocusChangedEventHandler GotKeyboardFocus 1740public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 1759public event KeyboardFocusChangedEventHandler LostKeyboardFocus
System\Windows\Generated\UIElement.cs (4)
3655public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 3674public event KeyboardFocusChangedEventHandler GotKeyboardFocus 3693public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 3712public event KeyboardFocusChangedEventHandler LostKeyboardFocus
System\Windows\Generated\UIElement3D.cs (4)
1432public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 1451public event KeyboardFocusChangedEventHandler GotKeyboardFocus 1470public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 1489public event KeyboardFocusChangedEventHandler LostKeyboardFocus
System\Windows\IInputElement.cs (4)
326event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus; 331event KeyboardFocusChangedEventHandler GotKeyboardFocus; 337event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus; 343event KeyboardFocusChangedEventHandler LostKeyboardFocus;
System\Windows\Input\FocusChangedEventArgs.cs (2)
66KeyboardFocusChangedEventHandler handler = (KeyboardFocusChangedEventHandler) genericHandler;
System\Windows\Input\Keyboard.cs (12)
119public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = EventManager.RegisterRoutedEvent("PreviewGotKeyboardFocus", RoutingStrategy.Tunnel, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 126public static void AddPreviewGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 136public static void RemovePreviewGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 194public static readonly RoutedEvent GotKeyboardFocusEvent = EventManager.RegisterRoutedEvent("GotKeyboardFocus", RoutingStrategy.Bubble, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 201public static void AddGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 211public static void RemoveGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 219public static readonly RoutedEvent PreviewLostKeyboardFocusEvent = EventManager.RegisterRoutedEvent("PreviewLostKeyboardFocus", RoutingStrategy.Tunnel, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 226public static void AddPreviewLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 236public static void RemovePreviewLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 244public static readonly RoutedEvent LostKeyboardFocusEvent = EventManager.RegisterRoutedEvent("LostKeyboardFocus", RoutingStrategy.Bubble, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 251public static void AddLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 261public static void RemoveLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler)
PresentationFramework (6)
System\Windows\Controls\Button.cs (3)
76KeyboardFocusChangedEventHandler focusChangedEventHandler = FocusChangedEventHandlerField.GetValue(b); 297private static readonly UncommonField<KeyboardFocusChangedEventHandler> FocusChangedEventHandlerField = new UncommonField<KeyboardFocusChangedEventHandler>();
System\Windows\Input\KeyboardNavigation.cs (3)
277internal event KeyboardFocusChangedEventHandler FocusChanged 300KeyboardFocusChangedEventHandler handler = item as KeyboardFocusChangedEventHandler;