AutomationElement.IsEnabledProperty 字段

定义

标识属性 IsEnabled ,该属性指定是否启用用户界面 (UI) 引用 AutomationElement 的项。

public: static initonly System::Windows::Automation::AutomationProperty ^ IsEnabledProperty;
public static readonly System.Windows.Automation.AutomationProperty IsEnabledProperty;
 staticval mutable IsEnabledProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly IsEnabledProperty As AutomationProperty 

字段值

AutomationProperty

示例

以下示例检索属性的当前值。 如果元素不提供默认值,则返回默认值。

bool isControlEnabled = (bool)
   autoElement.GetCurrentPropertyValue(AutomationElement.IsEnabledProperty);
Dim isControlEnabled As Boolean = _
    CBool(autoElement.GetCurrentPropertyValue(AutomationElement.IsEnabledProperty))

注解

此标识符由UI 自动化客户端应用程序使用。 UI 自动化提供程序应使用等效标识符。AutomationElementIdentifiers

也可以从 Current 属性 Cached 中检索此属性。

属性的返回值的类型 Boolean。 属性的默认值为 false.

如果控件 false处于启用状态,则假定子控件也未启用。 当父控件的状态发生更改时,不应期望子元素中的属性更改事件。

适用于

另请参阅