Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 1.92 KB

visualtreehelper_getchild_277630530.md

File metadata and controls

50 lines (38 loc) · 1.92 KB
-api-id -api-type
M:Microsoft.UI.Xaml.Media.VisualTreeHelper.GetChild(Microsoft.UI.Xaml.DependencyObject,System.Int32)
winrt method

Microsoft.UI.Xaml.Media.VisualTreeHelper.GetChild

-description

Using the provided index, obtains a specific child object of the provided object by examining the visual tree.

-parameters

-param reference

The object that holds the child collection.

-param childIndex

The index of the requested child object in the reference child collection.

-returns

The child object as referenced by childIndex.

-remarks

-examples

Here's an example of a utility function that can copy a list of child elements of a particular type from within a visual tree. It uses the basic traversal methods GetChildrenCount and GetChild. It uses recursion so that elements can be found no matter what level of nesting within intermediate containers exists. It also uses an IsSubclassOf extension method from System.Reflection that extends the type comparison to consider subtypes as a match for a Type.

internal static void FindChildren<T>(List<T> results, DependencyObject startNode)
  where T : DependencyObject
{
    int count = VisualTreeHelper.GetChildrenCount(startNode);
    for (int i = 0; i < count; i++)
    {
        DependencyObject current = VisualTreeHelper.GetChild(startNode, i);
        if ((current.GetType()).Equals(typeof(T)) || (current.GetType().GetTypeInfo().IsSubclassOf(typeof(T))))
        {
            T asType = (T)current;
            results.Add(asType);
        }
        FindChildren<T>(results, current);
    }
}

-see-also