TreeWalker.GetFirstChild Метод

Определение

Извлекает первый дочерний элемент заданного элемента AutomationElement.

Перегрузки

GetFirstChild(AutomationElement)

Извлекает первый дочерний элемент заданного элемента AutomationElement.

GetFirstChild(AutomationElement, CacheRequest)

Извлекает первый дочерний элемент заданного элемента AutomationElement и кэширует свойства и шаблоны.

Комментарии

Может AutomationElement содержать дополнительные дочерние элементы, которые не соответствуют текущему условию представления и поэтому не возвращаются при переходе по дереву элементов.

Структура AutomationElement дерева изменяется в виде видимых элементов пользовательского интерфейса на рабочем столе. Не гарантируется, что элемент, возвращенный в качестве первого дочернего элемента, будет возвращен в качестве первого дочернего элемента при последующих проходах.

GetFirstChild(AutomationElement)

Извлекает первый дочерний элемент заданного элемента AutomationElement.

public:
 System::Windows::Automation::AutomationElement ^ GetFirstChild(System::Windows::Automation::AutomationElement ^ element);
public System.Windows.Automation.AutomationElement GetFirstChild (System.Windows.Automation.AutomationElement element);
member this.GetFirstChild : System.Windows.Automation.AutomationElement -> System.Windows.Automation.AutomationElement
Public Function GetFirstChild (element As AutomationElement) As AutomationElement

Параметры

element
AutomationElement

Элемент, из которого необходимо извлечь первый дочерний элемент.

Возвращаемое значение

AutomationElement

Первый дочерний элемент или пустая ссылка (Nothing в Visual Basic), если такой элемент отсутствует.

Примеры

В следующем примере показано GetFirstChild , как создать представление дерева элементов в поддереве.

/// <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 void WalkControlElements(AutomationElement rootElement, TreeNode 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.
    AutomationElement elementNode = TreeWalker.ControlViewWalker.GetFirstChild(rootElement);

    while (elementNode != null)
    {
        TreeNode childTreeNode = treeNode.Nodes.Add(elementNode.Current.ControlType.LocalizedControlType);
        WalkControlElements(elementNode, childTreeNode);
        elementNode = TreeWalker.ControlViewWalker.GetNextSibling(elementNode);
    }
}
''' <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

Комментарии

Может AutomationElement содержать дополнительные дочерние элементы, которые не соответствуют текущему условию представления и поэтому не возвращаются при переходе по дереву элементов.

Структура AutomationElement дерева изменяется в виде видимых элементов пользовательского интерфейса на рабочем столе. Не гарантируется, что элемент, возвращенный в качестве первого дочернего элемента, будет возвращен в качестве первого дочернего элемента при последующих проходах.

См. также раздел

Применяется к

GetFirstChild(AutomationElement, CacheRequest)

Извлекает первый дочерний элемент заданного элемента AutomationElement и кэширует свойства и шаблоны.

public:
 System::Windows::Automation::AutomationElement ^ GetFirstChild(System::Windows::Automation::AutomationElement ^ element, System::Windows::Automation::CacheRequest ^ request);
public System.Windows.Automation.AutomationElement GetFirstChild (System.Windows.Automation.AutomationElement element, System.Windows.Automation.CacheRequest request);
member this.GetFirstChild : System.Windows.Automation.AutomationElement * System.Windows.Automation.CacheRequest -> System.Windows.Automation.AutomationElement
Public Function GetFirstChild (element As AutomationElement, request As CacheRequest) As AutomationElement

Параметры

element
AutomationElement

Элемент, из которого необходимо извлечь первый дочерний элемент.

request
CacheRequest

Объект запроса кэша, который указывает свойства и шаблоны возвращенного элемента AutomationElement для кэширования.

Возвращаемое значение

AutomationElement

Первый дочерний элемент или пустая ссылка (Nothing в Visual Basic), если такой элемент отсутствует.

Комментарии

Может AutomationElement содержать дополнительные дочерние элементы, которые не соответствуют текущему условию представления и поэтому не возвращаются при переходе по дереву элементов.

Структура AutomationElement дерева изменяется в виде видимых элементов пользовательского интерфейса на рабочем столе. Не гарантируется, что элемент, возвращенный в качестве первого дочернего элемента, будет возвращен в качестве первого дочернего элемента при последующих проходах.

См. также раздел

Применяется к