19 references to LostKeyboardFocusEvent
PresentationCore (14)
Core\CSharp\System\Windows\Generated\ContentElement.cs (3)
1830
public static readonly RoutedEvent LostKeyboardFocusEvent = Keyboard.
LostKeyboardFocusEvent
.AddOwner(_typeofThis);
1837
add { AddHandler(Keyboard.
LostKeyboardFocusEvent
, value, false); }
1838
remove { RemoveHandler(Keyboard.
LostKeyboardFocusEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
855
EventManager.RegisterClassHandler(type, Keyboard.
LostKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(UIElement.OnLostKeyboardFocusThunk), false);
4108
public static readonly RoutedEvent LostKeyboardFocusEvent = Keyboard.
LostKeyboardFocusEvent
.AddOwner(_typeofThis);
4115
add { AddHandler(Keyboard.
LostKeyboardFocusEvent
, value, false); }
4116
remove { RemoveHandler(Keyboard.
LostKeyboardFocusEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement3D.cs (3)
1536
public static readonly RoutedEvent LostKeyboardFocusEvent = Keyboard.
LostKeyboardFocusEvent
.AddOwner(_typeofThis);
1543
add { AddHandler(Keyboard.
LostKeyboardFocusEvent
, value, false); }
1544
remove { RemoveHandler(Keyboard.
LostKeyboardFocusEvent
, value); }
Core\CSharp\System\Windows\Input\Command\CommandDevice.cs (1)
138
e.StagingItem.Input.RoutedEvent == Keyboard.
LostKeyboardFocusEvent
)
Core\CSharp\System\Windows\Input\Keyboard.cs (2)
258
UIElement.AddHandler(element,
LostKeyboardFocusEvent
, handler);
268
UIElement.RemoveHandler(element,
LostKeyboardFocusEvent
, handler);
Core\CSharp\System\Windows\Input\KeyboardDevice.cs (1)
545
lostFocus.RoutedEvent=Keyboard.
LostKeyboardFocusEvent
;
PresentationFramework (5)
src\Framework\System\windows\Documents\TextEditor.cs (1)
414
EventManager.RegisterClassHandler(controlType, Keyboard.
LostKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(OnLostKeyboardFocus));
src\Framework\System\Windows\FrameworkContentElement.cs (1)
111
EventManager.RegisterClassHandler(typeof(FrameworkContentElement), Keyboard.
LostKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(OnLostKeyboardFocus));
src\Framework\System\Windows\FrameworkElement.cs (1)
2389
EventManager.RegisterClassHandler(_typeofThis, Keyboard.
LostKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(OnLostKeyboardFocus));
src\Framework\System\Windows\Input\KeyboardNavigation.cs (1)
3259
if (inputEventArgs.RoutedEvent == Keyboard.
LostKeyboardFocusEvent
)
src\Framework\System\Windows\Interop\ActiveXHost.cs (1)
96
EventManager.RegisterClassHandler(typeof(ActiveXHost), Keyboard.
LostKeyboardFocusEvent
, new KeyboardFocusChangedEventHandler(OnLostFocus));