如何实现分层数据绑定?

时间:2011-06-20 22:48:59

标签: c# wpf xaml data-binding hierarchical

在这里学习WPF,我试图了解分层数据绑定。

这是我的情况:

public class A
{
    public int Id { ... }
    public IEnumerable<B> Children { ... }
}

public class B
{
    public string SomeValue { ... }
}

我想使用ItemsControl来显示A的集合,并且对于A的每次出现,我希望内部ItemsControl显示A.Children

我认为这样做会有所作为,但显然,我还有很多需要学习的东西......

<ItemsControl x:Name="icCollectionOfAs" ItemsSource="{Binding}">
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <StackPanel Orientation="Horizontal" />
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
    <ItemsControl.ItemTemplate>
        <DataTemplate>
            <Grid Width="auto" Height="auto">
                <TextBlock Text="{Binding Id}" />
                <ItemsControl ItemsSource="{Binding Children}">
                    <ItemsControl.ItemTemplate>
                        <DataTemplate>
                            <TextBlock Text="{Binding SomeValue}" />
                        </DataTemplate>
                    </ItemsControl.ItemTemplate>
                </ItemsControl>
            </Grid>
        </DataTemplate>
    </ItemsControl.ItemTemplate>
</ItemsControl>

然后,在代码隐藏......

icCollectionOfAs.ItemsSource = createSomeAsWithChildBsInThem();

所有这一切的结果都没有显示出来。为什么呢?

由于

1 个答案:

答案 0 :(得分:2)

您不应在XAML(ItemsSource="{Binding}")和后面的代码(icCollectionOfAs.ItemsSource = createSomeAsWithChildBsInThem();)中指定ItemsSource,稍后可能会调用XAML。

其余的对我来说似乎很好,除了ID的TextBlock可能隐藏在子项的ItemsControl后面,因为你使用没有行或列的Grid而不是StackPanel。