从xaml文件获取元素而不使用x:Name属性

时间:2013-05-12 12:40:47

标签: c# xaml textblock

所以我想在c#类中使用几个元素。这些是我想要从以下内容中提取元素的xaml文档的几行:

    <TextBlock x:Name="diastolic17" FontSize="10" Foreground="Ivory" Grid.Row="19"
             Grid.Column="4"
             TextAlignment="Center">0</TextBlock>
    <TextBlock x:Name="diastolic18" FontSize="10" Foreground="Ivory" Grid.Row="20"
             Grid.Column="4"
             TextAlignment="Center">98</TextBlock>
    <TextBlock x:Name="diastolic19" FontSize="10" Foreground="Ivory" Grid.Row="21"
             Grid.Column="4"
             TextAlignment="Center">88</TextBlock>

它们都在同一名称空间中。我以前只使用x:Name属性来获取TextBlocks,但问题是我现在有一个巨大的TextBlock列表,我怀疑唯一的方法是键入每个Textblock的名称。如果有人能澄清他们将如何处理这个问题?简单的解决方案将是优先考虑的,我是一名新手程序员,这是一个学校项目。

2 个答案:

答案 0 :(得分:1)

使用方法FindVisualChildren。它遍历Visual Tree并找到您想要的控件。

这应该可以解决问题

public static IEnumerable<T> FindVisualChildren<T>(DependencyObject depObj) where T : DependencyObject
{
if (depObj != null)
{
    for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
    {
        DependencyObject child = VisualTreeHelper.GetChild(depObj, i);
        if (child != null && child is T)
        {
            yield return (T)child;
        }

        foreach (T childOfChild in FindVisualChildren<T>(child))
        {
            yield return childOfChild;
        }
    }
}
}

然后你枚举像这样的控件

foreach (TextBlock tb in FindVisualChildren<TextBlock>(window))
{
    // do something with tb here
}

答案 1 :(得分:0)

如果需要引用很多控件,可以将它们分组到一个控件(stackpanel,grid,...)中,并通过枚举容器的子控件来访问控件。

另一种选择是use data binding。这样你可能根本不需要参考控件。