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