DependencyObjectExtensions

DependencyObjectExtensions 类型为 DependencyObject 对象提供一组扩展方法。 此类提供多个 API,以帮助使用 VisualTreeHelper 类。 遍历可视化树之所以可能很有用,原因有很多,这些原因 在文档中提到。

Syntax

// 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>();

示例

可以在 单元测试中找到更多示例。