如何获得真实的AutomationElement类型(例如TextEdit等)? GetType()返回System.Windows.Automation.AutomationElement。
答案 0 :(得分:1)
您可以通过AutomationElement.Current.ControlType
属性获取自动化元素类型。
ControlType controlType = AutomationElement.Current.ControlType;
有关详细信息,请参阅MSDN。
答案 1 :(得分:0)
我尝试过并发现以下方法有效:
DirectCast(<AutoElementName>.GetCurrentPropertyValue(AutomationElement.ControlTypeProperty), ControlType).LocalizedControlType