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