Reputation: 34188
How could I work with hierarchical Grid in WPF like below one
Is there any way to work with this type of grid through which we can show hierarchical data. please discuss or give me any url from where I can download the source of sample code which help me to work with hierarchical grid.
Upvotes: 3
Views: 8950
Reputation: 5617
Try this out: A xaml only treeview with columns
https://dlaa.me/blog/post/9898803
Upvotes: 2
Reputation: 2230
The Xceed DataGrid offers this functionality and does offer the open source version. Its called Blueprint. You will receive the source code for the component.
Upvotes: 1
Reputation: 1036
I came across Object List View today, and it seems quite good. Doesn't seem to be a filtering and virtualization though.
Upvotes: 1
Reputation: 14037
I've already seen a similar question and the answer contained this link.
ListView is a little more different than DataGrid, because it doesn't have editing and sorting functionality. But the sorting isn't plain in your picture, so I think that there is no difference between two controls in this case.
Upvotes: 2
Reputation: 2281
The Xceed Datagrid for WPf has this functionality built in and the samples are extensive.
http://xceed.com/Grid_WPF_Intro.html
Have a look at the online demo.
Upvotes: 1