63 references to FocusManager
PresentationCore (26)
System\Windows\ContentElement.cs (2)
517public static readonly RoutedEvent GotFocusEvent = FocusManager.GotFocusEvent.AddOwner(typeof(ContentElement)); 531public static readonly RoutedEvent LostFocusEvent = FocusManager.LostFocusEvent.AddOwner(typeof(ContentElement));
System\Windows\Input\Command\CommandManager.cs (5)
448if (FocusManager.GetIsFocusScope(d)) 483if (FocusManager.GetIsFocusScope(d)) 685IInputElement focusedElement = FocusManager.GetFocusedElement(parentScope); 721return FocusManager.GetFocusScope(parent); 731DependencyObject parentScope = FocusManager.GetFocusScope(child);
System\Windows\Input\FocusManager.cs (4)
25public static readonly RoutedEvent GotFocusEvent = EventManager.RegisterRoutedEvent("GotFocus", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(FocusManager)); 50public static readonly RoutedEvent LostFocusEvent = EventManager.RegisterRoutedEvent("LostFocus", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(FocusManager)); 87typeof(FocusManager), 101= DependencyProperty.RegisterAttached("IsFocusScope", typeof(bool), typeof(FocusManager),
System\Windows\Input\Keyboard.cs (1)
409if(FocusManager.GetIsFocusScope(element))
System\Windows\UIElement.cs (7)
1951if (!attached && FocusManager.GetFocusedElement(this)!=null) 1952FocusManager.SetFocusedElement(this, null); 2604DependencyObject focusScope = FocusManager.GetFocusScope(this); 2605if (FocusManager.GetFocusedElement(focusScope) == null) 2607FocusManager.SetFocusedElement(focusScope, (IInputElement)this); 3465public static readonly RoutedEvent GotFocusEvent = FocusManager.GotFocusEvent.AddOwner(typeof(UIElement)); 3479public static readonly RoutedEvent LostFocusEvent = FocusManager.LostFocusEvent.AddOwner(typeof(UIElement));
System\Windows\UIElement3D.cs (7)
308if (!attached && FocusManager.GetFocusedElement(this) != null) 309FocusManager.SetFocusedElement(this, null); 583DependencyObject focusScope = FocusManager.GetFocusScope(this); 584if (FocusManager.GetFocusedElement(focusScope) == null) 586FocusManager.SetFocusedElement(focusScope, (IInputElement)this); 720public static readonly RoutedEvent GotFocusEvent = FocusManager.GotFocusEvent.AddOwner(typeof(UIElement3D)); 734public static readonly RoutedEvent LostFocusEvent = FocusManager.LostFocusEvent.AddOwner(typeof(UIElement3D));
PresentationFramework (27)
MS\Internal\Documents\DocumentViewerHelper.cs (2)
48FocusManager.SetIsFocusScope(findToolBarHost, true); 67findToolBarHost.ClearValue(FocusManager.IsFocusScopeProperty);
System\Windows\Controls\ContextMenu.cs (1)
559FocusManager.SetFocusedElement(cm, null);
System\Windows\Controls\Frame.cs (1)
209IInputElement focusedElement = FocusManager.GetFocusedElement(doContent) as IInputElement;
System\Windows\Controls\Primitives\ButtonBase.cs (1)
83Visual focusScope = FocusManager.GetFocusScope(this) as Visual;
System\Windows\Controls\Primitives\MenuBase.cs (1)
59FocusManager.IsFocusScopeProperty.OverrideMetadata(typeof(MenuBase), new FrameworkPropertyMetadata(BooleanBoxes.TrueBox));
System\Windows\Controls\Primitives\Selector.cs (2)
1319if (FocusManager.GetFocusScope(currentFocus) != FocusManager.GetFocusScope(this))
System\Windows\Controls\TabItem.cs (3)
355DependencyObject thisFocusScope = FocusManager.GetFocusScope(this); 358DependencyObject currentFocusScope = FocusManager.GetFocusScope(currentFocus); 360FocusManager.SetFocusedElement(thisFocusScope, this);
System\Windows\Controls\ToolBar.cs (1)
69FocusManager.IsFocusScopeProperty.OverrideMetadata(typeof(ToolBar), new FrameworkPropertyMetadata(BooleanBoxes.TrueBox));
System\Windows\Controls\TreeView.cs (1)
758if (FocusManager.GetFocusScope(currentFocus) != root)
System\windows\Documents\TextSelection.cs (1)
327((IsRootElement(FocusManager.GetFocusScope(uiScope)) && IsFocusWithinRoot()) || // either UiScope root window has keyboard focus
System\Windows\FrameworkElement.cs (1)
5332IInputElement activeElement = FocusManager.GetFocusedElement(fe, true);
System\Windows\Input\KeyboardNavigation.cs (4)
909DependencyObject focusScope = FocusManager.GetFocusScope(focusTarget); 912FocusManager.SetFocusedElement(focusScope, focusTarget as IInputElement); 1579DependencyObject focusedElement = FocusManager.GetFocusedElement(e) as DependencyObject; 2615return FocusManager.GetIsFocusScope(e) || GetParent(e) == null;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
306case 213: t = () => typeof(FocusManager); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4735typeof(System.Windows.Input.FocusManager),
System\Windows\Markup\KnownTypes.cs (1)
5760case KnownElements.FocusManager: t = typeof(System.Windows.Input.FocusManager); break;
System\Windows\Navigation\NavigationService.cs (3)
802if (!((bool) focusScope.GetValue(FocusManager.IsFocusScopeProperty))) 804focusScope = FocusManager.GetFocusScope(focusScope); 806FocusManager.SetFocusedElement(focusScope, null);
System\Windows\Window.cs (2)
64FocusManager.IsFocusScopeProperty.OverrideMetadata(typeof(Window), new FrameworkPropertyMetadata(BooleanBoxes.TrueBox)); 2081IInputElement focusedElement = FocusManager.GetFocusedElement(doContent) as IInputElement;
PresentationUI (4)
InstallationError.xaml.cs (2)
87FocusManager.SetFocusedElement(this, RetryButton); 178FocusManager.SetFocusedElement(this, LogFileButton);
TenFeetInstallationError.xaml.cs (2)
89FocusManager.SetFocusedElement(this, RetryButton); 182FocusManager.SetFocusedElement(this, LogFileButton);
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (1)
95 FocusManager.IsFocusScopeProperty.OverrideMetadata(ownerType, new FrameworkPropertyMetadata(true));
Microsoft\Windows\Controls\Ribbon\RibbonMenuButton.cs (1)
74FocusManager.IsFocusScopeProperty.OverrideMetadata(ownerType, new FrameworkPropertyMetadata(false));
WindowsFormsIntegration (4)
System\Windows\Integration\ElementHost.cs (2)
74System.Windows.Input.FocusManager.SetIsFocusScope(this._decorator, true); 283System.Windows.Input.FocusManager.SetFocusedElement(_decorator, null);
System\Windows\Integration\WindowsFormsHost.cs (2)
71{ System.Windows.Input.FocusManager.SetFocusedElement(focusScope, this); } 162while (null != element && !FocusManager.GetIsFocusScope(element))