7 references to LostFocusEvent
PresentationCore (3)
System\Windows\UIElement.cs (3)
3506
add { AddHandler(
LostFocusEvent
, value); }
3507
remove { RemoveHandler(
LostFocusEvent
, value); }
3540
uiElement.OnLostFocus(new RoutedEventArgs(
LostFocusEvent
, uiElement));
PresentationFramework (4)
System\Windows\Controls\DataGridCell.cs (1)
49
EventManager.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)
400
EventManager.RegisterClassHandler(controlType, UIElement.
LostFocusEvent
, new RoutedEventHandler(OnLostFocus));