I need something just like this:
(I need both the TreeView and the ListView aspects. That is, Hirearchy and Columns.)
But, I need it in WPF. is thi
You can somewhat obtain this behavior with the DataGrid by following this tutorial (scroll the the Fake grouping with the help of the ViewModel section).
The tutorial's solution works well enough, but scrolling can get laggy and it's behavior unpredictable when some rows are collapsed.
Update: I changed how the children are hidden. Instead of collapsing rows, I removed items in the bound ObservableCollection. Now scrolling works perfectly!