22 references to GotKeyboardFocusEvent
PresentationCore (14)
Core\CSharp\System\Windows\Generated\ContentElement.cs (3)
1792public static readonly RoutedEvent GotKeyboardFocusEvent = Keyboard.GotKeyboardFocusEvent.AddOwner(_typeofThis); 1799add { AddHandler(Keyboard.GotKeyboardFocusEvent, value, false); } 1800remove { RemoveHandler(Keyboard.GotKeyboardFocusEvent, value); }
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
853EventManager.RegisterClassHandler(type, Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(UIElement.OnGotKeyboardFocusThunk), false); 4070public static readonly RoutedEvent GotKeyboardFocusEvent = Keyboard.GotKeyboardFocusEvent.AddOwner(_typeofThis); 4077add { AddHandler(Keyboard.GotKeyboardFocusEvent, value, false); } 4078remove { RemoveHandler(Keyboard.GotKeyboardFocusEvent, value); }
Core\CSharp\System\Windows\Generated\UIElement3D.cs (3)
1498public static readonly RoutedEvent GotKeyboardFocusEvent = Keyboard.GotKeyboardFocusEvent.AddOwner(_typeofThis); 1505add { AddHandler(Keyboard.GotKeyboardFocusEvent, value, false); } 1506remove { RemoveHandler(Keyboard.GotKeyboardFocusEvent, value); }
Core\CSharp\System\Windows\Input\Command\CommandDevice.cs (1)
137e.StagingItem.Input.RoutedEvent == Keyboard.GotKeyboardFocusEvent ||
Core\CSharp\System\Windows\Input\Keyboard.cs (2)
208UIElement.AddHandler(element, GotKeyboardFocusEvent, handler); 218UIElement.RemoveHandler(element, GotKeyboardFocusEvent, handler);
Core\CSharp\System\Windows\Input\KeyboardDevice.cs (1)
553gotFocus.RoutedEvent=Keyboard.GotKeyboardFocusEvent;
PresentationFramework (6)
src\Framework\System\Windows\Controls\ItemsControl.cs (1)
67EventManager.RegisterClassHandler(typeof(ItemsControl), Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotFocus));
src\Framework\System\Windows\Controls\ListBox.cs (1)
78EventManager.RegisterClassHandler(typeof(ListBox), Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotKeyboardFocus));
src\Framework\System\windows\Documents\TextEditor.cs (1)
413EventManager.RegisterClassHandler(controlType, Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotKeyboardFocus));
src\Framework\System\Windows\FrameworkContentElement.cs (1)
110EventManager.RegisterClassHandler(typeof(FrameworkContentElement), Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotKeyboardFocus));
src\Framework\System\Windows\FrameworkElement.cs (1)
2388EventManager.RegisterClassHandler(_typeofThis, Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotKeyboardFocus));
src\Framework\System\Windows\Interop\ActiveXHost.cs (1)
95EventManager.RegisterClassHandler(typeof(ActiveXHost), Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotFocus));
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\UserInterface\FocusScopeManager.cs (2)
62EventManager.RegisterClassHandler(typeof(Window), Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(FocusScopeManager.HandleGotKeyboardFocusEvent), true); 63EventManager.RegisterClassHandler(typeof(Popup), Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(FocusScopeManager.HandleGotKeyboardFocusEvent), true);