AutomationPeer.IsEnabledCore 方法

定义

在 Microsoft UI 自动化客户端调用 IsEnabled 或等效的 Microsoft UI 自动化客户端 API 时提供对等行为。

protected:
 virtual bool IsEnabledCore() = IsEnabledCore;
bool IsEnabledCore();
protected virtual bool IsEnabledCore();
function isEnabledCore()
Protected Overridable Function IsEnabledCore () As Boolean

返回

Boolean

bool

如果元素可以与之交互,则为 true;否则为 false

注解

AutomationPeer 级别的标准实现返回 true。 但是, FrameworkElementAutomationPeer 添加了检查所有者是否为 Control 的行为,并从 Control.IsEnabled 转发所有者信息。 如果所有者不是控件,但具有对等方(例如 TextBlock), 则 FrameworkElementAutomationPeer 实现返回 true

适用于

另请参阅