TreeWalker.TreeWalker Constructor
.NET Framework 3.0
Initializes a new instance of the TreeWalker class.
Namespace: System.Windows.Automation
Assembly: UIAutomationClient (in uiautomationclient.dll)
Assembly: UIAutomationClient (in uiautomationclient.dll)
The following example shows how you can construct a TreeWalker that navigates only among enabled elements.
/// <summary> /// Walks the UI Automation tree and adds the control type of each enabled control /// element it finds 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 void WalkEnabledElements(AutomationElement rootElement, TreeNode treeNode) { Condition condition1 = new PropertyCondition(AutomationElement.IsControlElementProperty, true); Condition condition2 = new PropertyCondition(AutomationElement.IsEnabledProperty, true); TreeWalker walker = new TreeWalker(new AndCondition(condition1, condition2)); AutomationElement elementNode = walker.GetFirstChild(rootElement); while (elementNode != null) { TreeNode childTreeNode = treeNode.Nodes.Add(elementNode.Current.ControlType.LocalizedControlType); WalkEnabledElements(elementNode, childTreeNode); elementNode = walker.GetNextSibling(elementNode); } }
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.