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