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