7 references to LostFocusEvent
PresentationCore (3)
Core\CSharp\System\Windows\UIElement.cs (3)
3541
add { AddHandler(
LostFocusEvent
, value); }
3542
remove { RemoveHandler(
LostFocusEvent
, value); }
3575
uiElement.OnLostFocus(new RoutedEventArgs(
LostFocusEvent
, uiElement));
PresentationFramework (4)
src\Framework\System\Windows\Controls\DataGridCell.cs (1)
47
EventManager.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)
415
EventManager.RegisterClassHandler(controlType, UIElement.
LostFocusEvent
, new RoutedEventHandler(OnLostFocus));