Hi All!
I've created a DataGrid in "regular" WPF that supports groups and the items within a group are shown in a wrappanel. For this I could use the code below:
<
DataGrid.ItemsPanel
>
<
ItemsPanelTemplate
>
<
WrapPanel
IsItemsHost
=
"True"
/>
</
ItemsPanelTemplate
>
</
DataGrid.ItemsPanel
>
The result should look something like this:
Group one:
Item1 Item2 Item3 Item4
Item5 Item6
Group two:
Item7 Item8 Item9 Item10
Group three:
Item11
So my questions:
Is there a way to access the gridview's ItemsPanel to do something similar, or are there any alternativse in the gridview?
- OR -
Is there a more suitable control for this that can handle this many items and the result can look like the same?
Thanks in advance,
Istvan