36 references to KeyboardFocusChangedEventHandler
PresentationCore (30)
System\Windows\Generated\ContentElement.cs (4)
1718public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 1737public event KeyboardFocusChangedEventHandler GotKeyboardFocus 1756public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 1775public event KeyboardFocusChangedEventHandler LostKeyboardFocus
System\Windows\Generated\UIElement.cs (4)
3671public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 3690public event KeyboardFocusChangedEventHandler GotKeyboardFocus 3709public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 3728public event KeyboardFocusChangedEventHandler LostKeyboardFocus
System\Windows\Generated\UIElement3D.cs (4)
1439public event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus 1458public event KeyboardFocusChangedEventHandler GotKeyboardFocus 1477public event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus 1496public event KeyboardFocusChangedEventHandler LostKeyboardFocus
System\Windows\IInputElement.cs (4)
328event KeyboardFocusChangedEventHandler PreviewGotKeyboardFocus; 333event KeyboardFocusChangedEventHandler GotKeyboardFocus; 339event KeyboardFocusChangedEventHandler PreviewLostKeyboardFocus; 345event KeyboardFocusChangedEventHandler LostKeyboardFocus;
System\Windows\Input\FocusChangedEventArgs.cs (2)
72KeyboardFocusChangedEventHandler handler = (KeyboardFocusChangedEventHandler) genericHandler;
System\Windows\Input\Keyboard.cs (12)
127public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = EventManager.RegisterRoutedEvent("PreviewGotKeyboardFocus", RoutingStrategy.Tunnel, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 134public static void AddPreviewGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 144public static void RemovePreviewGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 202public static readonly RoutedEvent GotKeyboardFocusEvent = EventManager.RegisterRoutedEvent("GotKeyboardFocus", RoutingStrategy.Bubble, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 209public static void AddGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 219public static void RemoveGotKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 227public static readonly RoutedEvent PreviewLostKeyboardFocusEvent = EventManager.RegisterRoutedEvent("PreviewLostKeyboardFocus", RoutingStrategy.Tunnel, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 234public static void AddPreviewLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 244public static void RemovePreviewLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 252public static readonly RoutedEvent LostKeyboardFocusEvent = EventManager.RegisterRoutedEvent("LostKeyboardFocus", RoutingStrategy.Bubble, typeof(KeyboardFocusChangedEventHandler), typeof(Keyboard)); 259public static void AddLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler) 269public static void RemoveLostKeyboardFocusHandler(DependencyObject element, KeyboardFocusChangedEventHandler handler)
PresentationFramework (6)
System\Windows\Controls\Button.cs (3)
86KeyboardFocusChangedEventHandler focusChangedEventHandler = FocusChangedEventHandlerField.GetValue(b); 308private static readonly UncommonField<KeyboardFocusChangedEventHandler> FocusChangedEventHandlerField = new UncommonField<KeyboardFocusChangedEventHandler>();
System\Windows\Input\KeyboardNavigation.cs (3)
288internal event KeyboardFocusChangedEventHandler FocusChanged 311KeyboardFocusChangedEventHandler handler = item as KeyboardFocusChangedEventHandler;