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