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