DependencyObjectExtensions

O DependencyObjectExtensions tipo fornece uma coleção de métodos de extensão para DependencyObject objetos. Esta classe expõe várias APIs para ajudar na utilização da classe VisualTreeHelper. Existem várias razões pelas quais percorrer a árvore visual pode ser útil, que são mencionadas na documentação.

Sintaxe

// Include the namespace to access extensions
using Microsoft.Toolkit.Uwp.UI;

// Find a visual descendant control using its name
var control = uiElement.FindDescendant("MyTextBox");

// Find the first visual descendant control of a specified type
control = uiElement.FindDescendant<ListView>();

// Find all visual descendant controls of the specified type.
// We use LINQ here to filter children of a specific type.
using System.Linq;

foreach (var child in uiElement.FindDescendants().OfType<ListViewItem>())
{
    // ...
}

// Find the first visual ascendant control using its name
control = uiElement.FindAscendant("MyScrollViewer");

// Find the first visual ascendant control of a specified type
control = uiElement.FindAscendant<ScrollViewer>();

Examples

Podes encontrar mais exemplos nos testes unitários.