I need to build a interface in wpf, something similar to TFS query interface
I need to build a interface in wpf, something similar to TFS query interface where I can do grou开发者_如何学编程ping and ungrouping rows any suggestions?
So far your answer is very generic, but simply for grouping of rows in a view, you might want to start by looking at ListView
combined with CollectionViewSource
. CollectionViewSource
will allow you to set grouping on a property, and ListView
will let you visualize that in WPF.
精彩评论