7 references to LostFocusEvent
PresentationCore (3)
Core\CSharp\System\Windows\UIElement.cs (3)
3541add { AddHandler(LostFocusEvent, value); } 3542remove { RemoveHandler(LostFocusEvent, value); } 3575uiElement.OnLostFocus(new RoutedEventArgs(LostFocusEvent, uiElement));
PresentationFramework (4)
src\Framework\System\Windows\Controls\DataGridCell.cs (1)
47EventManager.RegisterClassHandler(typeof(DataGridCell), LostFocusEvent, new RoutedEventHandler(OnAnyLostFocus), true);
src\Framework\System\Windows\Controls\DatePicker.cs (2)
667_textBox.RemoveHandler(TextBox.LostFocusEvent, new RoutedEventHandler(TextBox_LostFocus)); 712_textBox.AddHandler(TextBox.LostFocusEvent, new RoutedEventHandler(TextBox_LostFocus), true);
src\Framework\System\windows\Documents\TextEditor.cs (1)
415EventManager.RegisterClassHandler(controlType, UIElement.LostFocusEvent, new RoutedEventHandler(OnLostFocus));