并非所有属性在 UIAutomation 的 AutomationElement class 的 Visual Studio IntelliSense 中可见
Not all properties visible in Visual Studio IntelliSense for UIAutomation's AutomationElement class
The docs page for AutomationElement class at Microsoft表示class有六个属性。在我的 Visual Studio C# 解决方案中,IntelliSense 仅显示四个; FocusedElement 和 RootElement 缺失。当我查看元数据时,列出了属性,这告诉我文档没有过时:
我在Immediate里试了下window,结果是一样的,只显示了六个属性中的四个:
我做错了什么吗?如果不是,为什么会这样?
我正在 Windows 10 Professional 使用 Visual Studio 2019 Enterprise 最新版本。
缺少的两个属性是 static
,class 对象无法访问它们。
The docs page for AutomationElement class at Microsoft表示class有六个属性。在我的 Visual Studio C# 解决方案中,IntelliSense 仅显示四个; FocusedElement 和 RootElement 缺失。当我查看元数据时,列出了属性,这告诉我文档没有过时:
我在Immediate里试了下window,结果是一样的,只显示了六个属性中的四个:
我做错了什么吗?如果不是,为什么会这样?
我正在 Windows 10 Professional 使用 Visual Studio 2019 Enterprise 最新版本。
缺少的两个属性是 static
,class 对象无法访问它们。