12 references to IsKeyboardFocusableProperty
UIAutomationClient (4)
MS\Internal\Automation\Schema.cs (2)
265new AutomationPropertyInfo( convertToBool, AutomationElement.IsKeyboardFocusableProperty, typeof(bool), false ), 374AutomationElement.IsKeyboardFocusableProperty,
System\Windows\Automation\AutomationElement.cs (2)
924object canReceiveFocus = GetCurrentPropertyValue(AutomationElement.IsKeyboardFocusableProperty); 1507public bool IsKeyboardFocusable { get { return (bool) _el.GetPatternPropertyValue(IsKeyboardFocusableProperty, _useCache); } }
UIAutomationClientsideProviders (8)
MS\Internal\AutomationProxies\ProxyHwnd.cs (1)
154if ((bool)GetElementProperty(AutomationElement.IsKeyboardFocusableProperty))
MS\Internal\AutomationProxies\ProxySimple.cs (3)
223else if (idProp == AutomationElement.IsKeyboardFocusableProperty) 355if (GetParent() == null && (bool)GetElementProperty(AutomationElement.IsKeyboardFocusableProperty)) 555object isKeyboardFocusableProperty = GetElementProperty(AutomationElement.IsKeyboardFocusableProperty);
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
152if ((bool)GetElementProperty(AutomationElement.IsKeyboardFocusableProperty))
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
1413else if (idProp == AutomationElement.IsKeyboardFocusableProperty)
MS\Internal\AutomationProxies\WindowsScrollBar.cs (1)
210else if (idProp == AutomationElement.IsKeyboardFocusableProperty)
MS\Internal\AutomationProxies\WindowsToolbar.cs (1)
418_fIsKeyboardFocusable = (bool)parent.GetElementProperty(AutomationElement.IsKeyboardFocusableProperty);