38 references to KeyboardFocusChangedEventHandler
PresentationCore (30)
Core\CSharp\System\Windows\Generated\ContentElement.cs (4)
1778
public event
KeyboardFocusChangedEventHandler
PreviewGotKeyboardFocus
1797
public event
KeyboardFocusChangedEventHandler
GotKeyboardFocus
1816
public event
KeyboardFocusChangedEventHandler
PreviewLostKeyboardFocus
1835
public event
KeyboardFocusChangedEventHandler
LostKeyboardFocus
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
4056
public event
KeyboardFocusChangedEventHandler
PreviewGotKeyboardFocus
4075
public event
KeyboardFocusChangedEventHandler
GotKeyboardFocus
4094
public event
KeyboardFocusChangedEventHandler
PreviewLostKeyboardFocus
4113
public event
KeyboardFocusChangedEventHandler
LostKeyboardFocus
Core\CSharp\System\Windows\Generated\UIElement3D.cs (4)
1484
public event
KeyboardFocusChangedEventHandler
PreviewGotKeyboardFocus
1503
public event
KeyboardFocusChangedEventHandler
GotKeyboardFocus
1522
public event
KeyboardFocusChangedEventHandler
PreviewLostKeyboardFocus
1541
public event
KeyboardFocusChangedEventHandler
LostKeyboardFocus
Core\CSharp\System\Windows\IInputElement.cs (4)
325
event
KeyboardFocusChangedEventHandler
PreviewGotKeyboardFocus;
330
event
KeyboardFocusChangedEventHandler
GotKeyboardFocus;
336
event
KeyboardFocusChangedEventHandler
PreviewLostKeyboardFocus;
342
event
KeyboardFocusChangedEventHandler
LostKeyboardFocus;
Core\CSharp\System\Windows\Input\FocusChangedEventArgs.cs (2)
69
KeyboardFocusChangedEventHandler
handler = (
KeyboardFocusChangedEventHandler
) genericHandler;
Core\CSharp\System\Windows\Input\Keyboard.cs (12)
124
public static readonly RoutedEvent PreviewGotKeyboardFocusEvent = EventManager.RegisterRoutedEvent("PreviewGotKeyboardFocus", RoutingStrategy.Tunnel, typeof(
KeyboardFocusChangedEventHandler
), typeof(Keyboard));
131
public static void AddPreviewGotKeyboardFocusHandler(DependencyObject element,
KeyboardFocusChangedEventHandler
handler)
141
public static void RemovePreviewGotKeyboardFocusHandler(DependencyObject element,
KeyboardFocusChangedEventHandler
handler)
199
public static readonly RoutedEvent GotKeyboardFocusEvent = EventManager.RegisterRoutedEvent("GotKeyboardFocus", RoutingStrategy.Bubble, typeof(
KeyboardFocusChangedEventHandler
), typeof(Keyboard));
206
public static void AddGotKeyboardFocusHandler(DependencyObject element,
KeyboardFocusChangedEventHandler
handler)
216
public static void RemoveGotKeyboardFocusHandler(DependencyObject element,
KeyboardFocusChangedEventHandler
handler)
224
public static readonly RoutedEvent PreviewLostKeyboardFocusEvent = EventManager.RegisterRoutedEvent("PreviewLostKeyboardFocus", RoutingStrategy.Tunnel, typeof(
KeyboardFocusChangedEventHandler
), typeof(Keyboard));
231
public static void AddPreviewLostKeyboardFocusHandler(DependencyObject element,
KeyboardFocusChangedEventHandler
handler)
241
public static void RemovePreviewLostKeyboardFocusHandler(DependencyObject element,
KeyboardFocusChangedEventHandler
handler)
249
public static readonly RoutedEvent LostKeyboardFocusEvent = EventManager.RegisterRoutedEvent("LostKeyboardFocus", RoutingStrategy.Bubble, typeof(
KeyboardFocusChangedEventHandler
), typeof(Keyboard));
256
public static void AddLostKeyboardFocusHandler(DependencyObject element,
KeyboardFocusChangedEventHandler
handler)
266
public static void RemoveLostKeyboardFocusHandler(DependencyObject element,
KeyboardFocusChangedEventHandler
handler)
PresentationFramework (8)
src\Framework\System\Windows\Controls\Button.cs (3)
82
KeyboardFocusChangedEventHandler
focusChangedEventHandler = FocusChangedEventHandlerField.GetValue(b);
305
private static readonly UncommonField<
KeyboardFocusChangedEventHandler
> FocusChangedEventHandlerField = new UncommonField<
KeyboardFocusChangedEventHandler
>();
src\Framework\System\Windows\Controls\PopupControlService.cs (2)
1194
internal
KeyboardFocusChangedEventHandler
FocusChangedEventHandler
1216
private
KeyboardFocusChangedEventHandler
_focusChangedEventHandler;
src\Framework\System\Windows\Input\KeyboardNavigation.cs (3)
300
internal event
KeyboardFocusChangedEventHandler
FocusChanged
323
KeyboardFocusChangedEventHandler
handler = item as
KeyboardFocusChangedEventHandler
;