20 references to LostKeyboardFocusEvent
PresentationCore (14)
System\Windows\Generated\ContentElement.cs (3)
1754public static readonly RoutedEvent LostKeyboardFocusEvent = Keyboard.LostKeyboardFocusEvent.AddOwner(_typeofThis); 1761add { AddHandler(Keyboard.LostKeyboardFocusEvent, value, false); } 1762remove { RemoveHandler(Keyboard.LostKeyboardFocusEvent, value); }
System\Windows\Generated\UIElement.cs (4)
774EventManager.RegisterClassHandler(type, Keyboard.LostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(UIElement.OnLostKeyboardFocusThunk), false); 3707public static readonly RoutedEvent LostKeyboardFocusEvent = Keyboard.LostKeyboardFocusEvent.AddOwner(_typeofThis); 3714add { AddHandler(Keyboard.LostKeyboardFocusEvent, value, false); } 3715remove { RemoveHandler(Keyboard.LostKeyboardFocusEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1484public static readonly RoutedEvent LostKeyboardFocusEvent = Keyboard.LostKeyboardFocusEvent.AddOwner(_typeofThis); 1491add { AddHandler(Keyboard.LostKeyboardFocusEvent, value, false); } 1492remove { RemoveHandler(Keyboard.LostKeyboardFocusEvent, value); }
System\Windows\Input\Command\CommandDevice.cs (1)
110e.StagingItem.Input.RoutedEvent == Keyboard.LostKeyboardFocusEvent)
System\Windows\Input\Keyboard.cs (2)
253UIElement.AddHandler(element, LostKeyboardFocusEvent, handler); 263UIElement.RemoveHandler(element, LostKeyboardFocusEvent, handler);
System\Windows\Input\KeyboardDevice.cs (1)
469RoutedEvent = Keyboard.LostKeyboardFocusEvent,
PresentationFramework (6)
System\Windows\Controls\PopupControlService.cs (1)
125else if (e.StagingItem.Input.RoutedEvent == Keyboard.LostKeyboardFocusEvent)
System\windows\Documents\TextEditor.cs (1)
384EventManager.RegisterClassHandler(controlType, Keyboard.LostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnLostKeyboardFocus));
System\Windows\FrameworkContentElement.cs (1)
92EventManager.RegisterClassHandler(typeof(FrameworkContentElement), Keyboard.LostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnLostKeyboardFocus));
System\Windows\FrameworkElement.cs (1)
2372EventManager.RegisterClassHandler(_typeofThis, Keyboard.LostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnLostKeyboardFocus));
System\Windows\Input\KeyboardNavigation.cs (1)
3150if (inputEventArgs.RoutedEvent == Keyboard.LostKeyboardFocusEvent)
System\Windows\Interop\ActiveXHost.cs (1)
74EventManager.RegisterClassHandler(typeof(ActiveXHost), Keyboard.LostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnLostFocus));