2

我如何获得真实TypeAutomationElement(例如TextEdit等等)?GetType()返回System.Windows.Automation.AutomationElement

4

2 回答 2

1

您可以通过AutomationElement.Current.ControlType属性获取自动化元素的类型。

ControlType controlType = AutomationElement.Current.ControlType;

有关详细信息,请参阅MSDN

于 2012-09-19T07:29:32.797 回答
0

我尝试并发现以下工作:

DirectCast(<AutoElementName>.GetCurrentPropertyValue(AutomationElement.ControlTypeProperty), ControlType).LocalizedControlType
于 2020-04-29T16:31:15.473 回答