20 references to LostKeyboardFocusEvent
PresentationCore (14)
System\Windows\Generated\ContentElement.cs (3)
1770
public static readonly RoutedEvent LostKeyboardFocusEvent = Keyboard.
LostKeyboardFocusEvent
.AddOwner(_typeofThis);
1777
add { AddHandler(Keyboard.
LostKeyboardFocusEvent
, value, false); }
1778
remove { RemoveHandler(Keyboard.
LostKeyboardFocusEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
790
EventManager.RegisterClassHandler(type, Keyboard.
LostKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(UIElement.OnLostKeyboardFocusThunk), false);
3723
public static readonly RoutedEvent LostKeyboardFocusEvent = Keyboard.
LostKeyboardFocusEvent
.AddOwner(_typeofThis);
3730
add { AddHandler(Keyboard.
LostKeyboardFocusEvent
, value, false); }
3731
remove { RemoveHandler(Keyboard.
LostKeyboardFocusEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1491
public static readonly RoutedEvent LostKeyboardFocusEvent = Keyboard.
LostKeyboardFocusEvent
.AddOwner(_typeofThis);
1498
add { AddHandler(Keyboard.
LostKeyboardFocusEvent
, value, false); }
1499
remove { RemoveHandler(Keyboard.
LostKeyboardFocusEvent
, value); }
System\Windows\Input\Command\CommandDevice.cs (1)
116
e.StagingItem.Input.RoutedEvent == Keyboard.
LostKeyboardFocusEvent
)
System\Windows\Input\Keyboard.cs (2)
261
UIElement.AddHandler(element,
LostKeyboardFocusEvent
, handler);
271
UIElement.RemoveHandler(element,
LostKeyboardFocusEvent
, handler);
System\Windows\Input\KeyboardDevice.cs (1)
473
lostFocus.RoutedEvent=Keyboard.
LostKeyboardFocusEvent
;
PresentationFramework (6)
System\Windows\Controls\PopupControlService.cs (1)
136
else if (e.StagingItem.Input.RoutedEvent == Keyboard.
LostKeyboardFocusEvent
)
System\windows\Documents\TextEditor.cs (1)
399
EventManager.RegisterClassHandler(controlType, Keyboard.
LostKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(OnLostKeyboardFocus));
System\Windows\FrameworkContentElement.cs (1)
114
EventManager.RegisterClassHandler(typeof(FrameworkContentElement), Keyboard.
LostKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(OnLostKeyboardFocus));
System\Windows\FrameworkElement.cs (1)
2392
EventManager.RegisterClassHandler(_typeofThis, Keyboard.
LostKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(OnLostKeyboardFocus));
System\Windows\Input\KeyboardNavigation.cs (1)
3166
if (inputEventArgs.RoutedEvent == Keyboard.
LostKeyboardFocusEvent
)
System\Windows\Interop\ActiveXHost.cs (1)
89
EventManager.RegisterClassHandler(typeof(ActiveXHost), Keyboard.
LostKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(OnLostFocus));