19 references to PreviewLostKeyboardFocusEvent
PresentationCore (13)
Core\CSharp\System\Windows\Generated\ContentElement.cs (3)
1811public static readonly RoutedEvent PreviewLostKeyboardFocusEvent = Keyboard.PreviewLostKeyboardFocusEvent.AddOwner(_typeofThis); 1818add { AddHandler(Keyboard.PreviewLostKeyboardFocusEvent, value, false); } 1819remove { RemoveHandler(Keyboard.PreviewLostKeyboardFocusEvent, value); }
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
854EventManager.RegisterClassHandler(type, Keyboard.PreviewLostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(UIElement.OnPreviewLostKeyboardFocusThunk), false); 4089public static readonly RoutedEvent PreviewLostKeyboardFocusEvent = Keyboard.PreviewLostKeyboardFocusEvent.AddOwner(_typeofThis); 4096add { AddHandler(Keyboard.PreviewLostKeyboardFocusEvent, value, false); } 4097remove { RemoveHandler(Keyboard.PreviewLostKeyboardFocusEvent, value); }
Core\CSharp\System\Windows\Generated\UIElement3D.cs (3)
1517public static readonly RoutedEvent PreviewLostKeyboardFocusEvent = Keyboard.PreviewLostKeyboardFocusEvent.AddOwner(_typeofThis); 1524add { AddHandler(Keyboard.PreviewLostKeyboardFocusEvent, value, false); } 1525remove { RemoveHandler(Keyboard.PreviewLostKeyboardFocusEvent, value); }
Core\CSharp\System\Windows\Input\Keyboard.cs (2)
233UIElement.AddHandler(element, PreviewLostKeyboardFocusEvent, handler); 243UIElement.RemoveHandler(element, PreviewLostKeyboardFocusEvent, handler);
Core\CSharp\System\Windows\Input\KeyboardDevice.cs (1)
357previewLostFocus.RoutedEvent=Keyboard.PreviewLostKeyboardFocusEvent;
PresentationFramework (6)
src\Framework\System\Windows\Input\KeyboardNavigation.cs (6)
2824sourceUIElement.RemoveHandler(Keyboard.PreviewLostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(_LostFocus)); 2829sourceContentElement.RemoveHandler(Keyboard.PreviewLostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(_LostFocus)); 2841targetContentElement.AddHandler(Keyboard.PreviewLostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(_LostFocus), true); 2853targetUIElement.AddHandler(Keyboard.PreviewLostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(_LostFocus), true); 2882((UIElement)sender).RemoveHandler(Keyboard.PreviewLostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(_LostFocus)); 2884((ContentElement)sender).RemoveHandler(Keyboard.PreviewLostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(_LostFocus));