7 references to LostFocusEvent
PresentationCore (3)
System\Windows\UIElement.cs (3)
3510add { AddHandler(LostFocusEvent, value); } 3511remove { RemoveHandler(LostFocusEvent, value); } 3544uiElement.OnLostFocus(new RoutedEventArgs(LostFocusEvent, uiElement));
PresentationFramework (4)
System\Windows\Controls\DataGridCell.cs (1)
49EventManager.RegisterClassHandler(typeof(DataGridCell), LostFocusEvent, new RoutedEventHandler(OnAnyLostFocus), true);
System\Windows\Controls\DatePicker.cs (2)
678_textBox.RemoveHandler(TextBox.LostFocusEvent, new RoutedEventHandler(TextBox_LostFocus)); 723_textBox.AddHandler(TextBox.LostFocusEvent, new RoutedEventHandler(TextBox_LostFocus), true);
System\windows\Documents\TextEditor.cs (1)
400EventManager.RegisterClassHandler(controlType, UIElement.LostFocusEvent, new RoutedEventHandler(OnLostFocus));