20 references to LostKeyboardFocusEvent
PresentationCore (14)
System\Windows\Generated\ContentElement.cs (3)
1755public static readonly RoutedEvent LostKeyboardFocusEvent = Keyboard.LostKeyboardFocusEvent.AddOwner(_typeofThis); 1762add { AddHandler(Keyboard.LostKeyboardFocusEvent, value, false); } 1763remove { RemoveHandler(Keyboard.LostKeyboardFocusEvent, value); }
System\Windows\Generated\UIElement.cs (4)
775EventManager.RegisterClassHandler(type, Keyboard.LostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(UIElement.OnLostKeyboardFocusThunk), false); 3708public static readonly RoutedEvent LostKeyboardFocusEvent = Keyboard.LostKeyboardFocusEvent.AddOwner(_typeofThis); 3715add { AddHandler(Keyboard.LostKeyboardFocusEvent, value, false); } 3716remove { RemoveHandler(Keyboard.LostKeyboardFocusEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1483public static readonly RoutedEvent LostKeyboardFocusEvent = Keyboard.LostKeyboardFocusEvent.AddOwner(_typeofThis); 1490add { AddHandler(Keyboard.LostKeyboardFocusEvent, value, false); } 1491remove { RemoveHandler(Keyboard.LostKeyboardFocusEvent, value); }
System\Windows\Input\Command\CommandDevice.cs (1)
111e.StagingItem.Input.RoutedEvent == Keyboard.LostKeyboardFocusEvent)
System\Windows\Input\Keyboard.cs (2)
254UIElement.AddHandler(element, LostKeyboardFocusEvent, handler); 264UIElement.RemoveHandler(element, LostKeyboardFocusEvent, handler);
System\Windows\Input\KeyboardDevice.cs (1)
470RoutedEvent = Keyboard.LostKeyboardFocusEvent,
PresentationFramework (6)
System\Windows\Controls\PopupControlService.cs (1)
126else if (e.StagingItem.Input.RoutedEvent == Keyboard.LostKeyboardFocusEvent)
System\windows\Documents\TextEditor.cs (1)
385EventManager.RegisterClassHandler(controlType, Keyboard.LostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnLostKeyboardFocus));
System\Windows\FrameworkContentElement.cs (1)
93EventManager.RegisterClassHandler(typeof(FrameworkContentElement), Keyboard.LostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnLostKeyboardFocus));
System\Windows\FrameworkElement.cs (1)
2373EventManager.RegisterClassHandler(_typeofThis, Keyboard.LostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnLostKeyboardFocus));
System\Windows\Input\KeyboardNavigation.cs (1)
3152if (inputEventArgs.RoutedEvent == Keyboard.LostKeyboardFocusEvent)
System\Windows\Interop\ActiveXHost.cs (1)
75EventManager.RegisterClassHandler(typeof(ActiveXHost), Keyboard.LostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnLostFocus));