36 references to KeyboardFocusChangedEventHandler
PresentationCore (30)
System\Windows\Generated\ContentElement.cs (4)
1714public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 1733public event KeyboardFocusChangedEventHandler GotKeyboardFocus 1752public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 1771public event KeyboardFocusChangedEventHandler LostKeyboardFocus
System\Windows\Generated\UIElement.cs (4)
3667public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 3686public event KeyboardFocusChangedEventHandler GotKeyboardFocus 3705public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 3724public event KeyboardFocusChangedEventHandler LostKeyboardFocus
System\Windows\Generated\UIElement3D.cs (4)
1433public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 1452public event KeyboardFocusChangedEventHandler GotKeyboardFocus 1471public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 1490public event KeyboardFocusChangedEventHandler LostKeyboardFocus
System\Windows\IInputElement.cs (4)
327event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus; 332event KeyboardFocusChangedEventHandler GotKeyboardFocus; 338event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus; 344event KeyboardFocusChangedEventHandler LostKeyboardFocus;
System\Windows\Input\FocusChangedEventArgs.cs (2)
67KeyboardFocusChangedEventHandler handler = (KeyboardFocusChangedEventHandler) genericHandler;
System\Windows\Input\Keyboard.cs (12)
120public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = EventManager.RegisterRoutedEvent("PreviewGotKeyboardFocus", RoutingStrategy.Tunnel, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 127public static void AddPreviewGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 137public static void RemovePreviewGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 195public static readonly RoutedEvent GotKeyboardFocusEvent = EventManager.RegisterRoutedEvent("GotKeyboardFocus", RoutingStrategy.Bubble, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 202public static void AddGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 212public static void RemoveGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 220public static readonly RoutedEvent PreviewLostKeyboardFocusEvent = EventManager.RegisterRoutedEvent("PreviewLostKeyboardFocus", RoutingStrategy.Tunnel, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 227public static void AddPreviewLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 237public static void RemovePreviewLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 245public static readonly RoutedEvent LostKeyboardFocusEvent = EventManager.RegisterRoutedEvent("LostKeyboardFocus", RoutingStrategy.Bubble, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 252public static void AddLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 262public static void RemoveLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler)
PresentationFramework (6)
System\Windows\Controls\Button.cs (3)
77KeyboardFocusChangedEventHandler focusChangedEventHandler = FocusChangedEventHandlerField.GetValue(b); 299private static readonly UncommonField<KeyboardFocusChangedEventHandler> FocusChangedEventHandlerField = new UncommonField<KeyboardFocusChangedEventHandler>();
System\Windows\Input\KeyboardNavigation.cs (3)
278internal event KeyboardFocusChangedEventHandler FocusChanged 301KeyboardFocusChangedEventHandler handler = item as KeyboardFocusChangedEventHandler;