我如何获得真实Type
的AutomationElement
(例如TextEdit
等等)?GetType()
返回System.Windows.Automation.AutomationElement
。
问问题
1683 次
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 回答