7 references to LostFocusEvent
PresentationCore (3)
System\Windows\UIElement.cs (3)
3501
add { AddHandler(
LostFocusEvent
, value); }
3502
remove { RemoveHandler(
LostFocusEvent
, value); }
3535
uiElement.OnLostFocus(new RoutedEventArgs(
LostFocusEvent
, uiElement));
PresentationFramework (4)
System\Windows\Controls\DataGridCell.cs (1)
42
EventManager.RegisterClassHandler(typeof(DataGridCell),
LostFocusEvent
, new RoutedEventHandler(OnAnyLostFocus), true);
System\Windows\Controls\DatePicker.cs (2)
674
_textBox.RemoveHandler(TextBox.
LostFocusEvent
, new RoutedEventHandler(TextBox_LostFocus));
719
_textBox.AddHandler(TextBox.
LostFocusEvent
, new RoutedEventHandler(TextBox_LostFocus), true);
System\windows\Documents\TextEditor.cs (1)
394
EventManager.RegisterClassHandler(controlType, UIElement.
LostFocusEvent
, new RoutedEventHandler(OnLostFocus));