0

我看到了一些使用 VB.NET 解析 UI 自动化树的示例代码。代码在这里:

'' <summary> 
''' Walks the UI Automation tree and adds the control type of each element it finds  
''' in the control view to a TreeView. 
''' </summary> 
''' <param name="rootElement">The root of the search on this iteration.</param> 
''' <param name="treeNode">The node in the TreeView for this iteration.</param> 
''' <remarks> 
''' This is a recursive function that maps out the structure of the subtree beginning at the 
''' UI Automation element passed in as rootElement on the first call. This could be, for example, 
''' an application window. 
''' CAUTION: Do not pass in AutomationElement.RootElement. Attempting to map out the entire subtree of 
''' the desktop could take a very long time and even lead to a stack overflow. 
''' </remarks> 

Private Sub WalkControlElements(ByVal rootElement As AutomationElement, ByVal treeNode As TreeNode)
    ' Conditions for the basic views of the subtree (content, control, and raw)  
    ' are available as fields of TreeWalker, and one of these is used in the  
    ' following code. 

    Dim elementNode As AutomationElement = TreeWalker.ControlViewWalker.GetFirstChild(rootElement)

    While (elementNode IsNot Nothing)
        Dim childTreeNode As TreeNode = treeNode.Nodes.Add(elementNode.Current.ControlType.LocalizedControlType)
        WalkControlElements(elementNode, childTreeNode)
        elementNode = TreeWalker.ControlViewWalker.GetNextSibling(elementNode)
    End While 

End Sub 'WalkControlElements

如果我想使用它,我必须传入 rootElement。我想知道这是什么语法?使用 UISpy,我可以看到类名是“WindowsForm10.Window.8.app.0.378734a”。

4

1 回答 1

0

AutomationElement.RootElement将为您提供 AutomationElement 树的根,即桌面。如果你想得到一个不同的元素,你可以创建一个Condition对象然后调用AutomationElement.RootElement.FindFirstor AutomationElement.RootElement.FindAll,这取决于你想在这里做什么。

于 2013-11-04T10:14:25.007 回答