12 references to IsKeyboardFocusableProperty
UIAutomationClient (4)
MS\Internal\Automation\Schema.cs (2)
278new AutomationPropertyInfo( convertToBool, AutomationElement.IsKeyboardFocusableProperty, typeof(bool), false ), 389AutomationElement.IsKeyboardFocusableProperty,
System\Windows\Automation\AutomationElement.cs (2)
849object canReceiveFocus = GetCurrentPropertyValue(AutomationElement.IsKeyboardFocusableProperty); 1407public bool IsKeyboardFocusable { get { return (bool) _el.GetPatternPropertyValue(IsKeyboardFocusableProperty, _useCache); } }
UIAutomationClientSideProviders (8)
MS\Internal\AutomationProxies\ProxyHwnd.cs (1)
135if ((bool)GetElementProperty(AutomationElement.IsKeyboardFocusableProperty))
MS\Internal\AutomationProxies\ProxySimple.cs (3)
208else if (idProp == AutomationElement.IsKeyboardFocusableProperty) 338if (GetParent() == null && (bool)GetElementProperty(AutomationElement.IsKeyboardFocusableProperty)) 538object isKeyboardFocusableProperty = GetElementProperty(AutomationElement.IsKeyboardFocusableProperty);
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
134if ((bool)GetElementProperty(AutomationElement.IsKeyboardFocusableProperty))
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
1393else if (idProp == AutomationElement.IsKeyboardFocusableProperty)
MS\Internal\AutomationProxies\WindowsScrollBar.cs (1)
196else if (idProp == AutomationElement.IsKeyboardFocusableProperty)
MS\Internal\AutomationProxies\WindowsToolbar.cs (1)
407_fIsKeyboardFocusable = (bool)parent.GetElementProperty(AutomationElement.IsKeyboardFocusableProperty);