36 references to KeyboardFocusChangedEventHandler
PresentationCore (30)
System\Windows\Generated\ContentElement.cs (4)
1706public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 1725public event KeyboardFocusChangedEventHandler GotKeyboardFocus 1744public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 1763public event KeyboardFocusChangedEventHandler LostKeyboardFocus
System\Windows\Generated\UIElement.cs (4)
3659public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 3678public event KeyboardFocusChangedEventHandler GotKeyboardFocus 3697public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 3716public event KeyboardFocusChangedEventHandler LostKeyboardFocus
System\Windows\Generated\UIElement3D.cs (4)
1431public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 1450public event KeyboardFocusChangedEventHandler GotKeyboardFocus 1469public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 1488public 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;