19 references to PreviewLostKeyboardFocusEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1751public static readonly RoutedEvent PreviewLostKeyboardFocusEvent = Keyboard.PreviewLostKeyboardFocusEvent.AddOwner(_typeofThis); 1758add { AddHandler(Keyboard.PreviewLostKeyboardFocusEvent, value, false); } 1759remove { RemoveHandler(Keyboard.PreviewLostKeyboardFocusEvent, value); }
System\Windows\Generated\UIElement.cs (4)
789EventManager.RegisterClassHandler(type, Keyboard.PreviewLostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(UIElement.OnPreviewLostKeyboardFocusThunk), false); 3704public static readonly RoutedEvent PreviewLostKeyboardFocusEvent = Keyboard.PreviewLostKeyboardFocusEvent.AddOwner(_typeofThis); 3711add { AddHandler(Keyboard.PreviewLostKeyboardFocusEvent, value, false); } 3712remove { RemoveHandler(Keyboard.PreviewLostKeyboardFocusEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1472public static readonly RoutedEvent PreviewLostKeyboardFocusEvent = Keyboard.PreviewLostKeyboardFocusEvent.AddOwner(_typeofThis); 1479add { AddHandler(Keyboard.PreviewLostKeyboardFocusEvent, value, false); } 1480remove { RemoveHandler(Keyboard.PreviewLostKeyboardFocusEvent, value); }
System\Windows\Input\Keyboard.cs (2)
236UIElement.AddHandler(element, PreviewLostKeyboardFocusEvent, handler); 246UIElement.RemoveHandler(element, PreviewLostKeyboardFocusEvent, handler);
System\Windows\Input\KeyboardDevice.cs (1)
288previewLostFocus.RoutedEvent=Keyboard.PreviewLostKeyboardFocusEvent;
PresentationFramework (6)
System\Windows\Input\KeyboardNavigation.cs (6)
2736sourceUIElement.RemoveHandler(Keyboard.PreviewLostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(_LostFocus)); 2741sourceContentElement.RemoveHandler(Keyboard.PreviewLostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(_LostFocus)); 2753targetContentElement.AddHandler(Keyboard.PreviewLostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(_LostFocus), true); 2765targetUIElement.AddHandler(Keyboard.PreviewLostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(_LostFocus), true); 2793((UIElement)sender).RemoveHandler(Keyboard.PreviewLostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(_LostFocus)); 2795((ContentElement)sender).RemoveHandler(Keyboard.PreviewLostKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(_LostFocus));