如何在WPF中的运行时中获取在控制模板下定义的元素

时间:2010-08-18 10:34:15

标签: wpf

如何在WPF中的运行时中获取在控制模板下定义的元素

2 个答案:

答案 0 :(得分:2)

您可以使用VisualTreeHelper查找子项。例如:

for (int i = 0; i < VisualTreeHelper.GetChildrenCount(parentElement); i++)
{
    var childElement = VisualTreeHelper.GetChild(parentElement, i);
    // Do something with object here
}

答案 1 :(得分:1)

使用模板属性FindName方法

控制 .Template.FindName