I would like to display a multi-level list of objects in WPF. I have a list of grandparents, each of those grandparents contains a list of parent, and each parent contains a list of sons. I would like to display all of this in a DataGrid like that, in MVVM:
I've tried to bind my list of grandparent to a DataGrid, and to set the template of the childrens with an other DataGrid.
Here is my xaml:
<DataGrid Grid.Row="1" ItemsSource="{Binding CollectionGrandParents}"
AutoGenerateColumns="False" IsReadOnly="True" CanUserAddRows="False" CanUserDeleteRows="False">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding label}" />
<DataGridTemplateColumn CellTemplate="{StaticResource CellParentTemplate}"/>
</DataGrid.Columns>
</DataGrid>
<!-- Data Templates -->
<DataTemplate x:Key="CellParentTemplate">
<DataGrid ItemsSource="{Binding .parents}"
AutoGenerateColumns="False" IsReadOnly="True" CanUserAddRows="False" CanUserDeleteRows="False">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding label}" />
<DataGridTemplateColumn CellTemplate="{DynamicResource CellSonTemplate}"/>
</DataGrid.Columns>
</DataGrid>
</DataTemplate>
<DataTemplate x:Key="CellSonTemplate">
<DataGrid ItemsSource="{Binding .sons}"
AutoGenerateColumns="False" IsReadOnly="True" CanUserAddRows="False" CanUserDeleteRows="False">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding label}"/>
</DataGrid.Columns>
</DataGrid>
And the result:
My problem is that the parents and sons are not in the same respective column, they are in another DataGrid. I would like to display all of my grandparents, parents and sons in the same DataGrid (or maybe a should use another element than DataGrid, but I don't know which), because I want to adjust correctly the columns width.
Really close to what you requested:
Obtained with the following XAML, which contains a slight modification of the TreeViewItem Default Template
Code Behind (just boilerplate to generate random data):
Data Item:
WPF Rocks \m/