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)
848object canReceiveFocus = GetCurrentPropertyValue(AutomationElement.IsKeyboardFocusableProperty); 1406public bool IsKeyboardFocusable { get { return (bool) _el.GetPatternPropertyValue(IsKeyboardFocusableProperty, _useCache); } }
UIAutomationClientSideProviders (8)
MS\Internal\AutomationProxies\ProxyHwnd.cs (1)
133if ((bool)GetElementProperty(AutomationElement.IsKeyboardFocusableProperty))
MS\Internal\AutomationProxies\ProxySimple.cs (3)
207else if (idProp == AutomationElement.IsKeyboardFocusableProperty) 337if (GetParent() == null && (bool)GetElementProperty(AutomationElement.IsKeyboardFocusableProperty)) 537object isKeyboardFocusableProperty = GetElementProperty(AutomationElement.IsKeyboardFocusableProperty);
MS\Internal\AutomationProxies\WindowsEditBox.cs (1)
133if ((bool)GetElementProperty(AutomationElement.IsKeyboardFocusableProperty))
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
1392else if (idProp == AutomationElement.IsKeyboardFocusableProperty)
MS\Internal\AutomationProxies\WindowsScrollBar.cs (1)
192else if (idProp == AutomationElement.IsKeyboardFocusableProperty)
MS\Internal\AutomationProxies\WindowsToolbar.cs (1)
403_fIsKeyboardFocusable = (bool)parent.GetElementProperty(AutomationElement.IsKeyboardFocusableProperty);