Search Results

1
vote
5answers
1k views

WPF - Sorting a composite collection

So WPF doesn't support standard sorting or filtering behavior for views of CompositeCollections, so what would be a best practice for solving tihs problem. There are two or more object col …
0
votes

WPF - Sorting a composite collection

Thanks all for the answers. ageektrapped: No, it doesn't which is the problem. lubos: Thanks - I also considered LINQ to objects, but my concern th …
1
vote

WPF - Sorting a composite collection

Update: I found a much more elegant solution: class MyCompositeObject { DateTime CreatedDate; string SomeAttribute; Object Obj1; { class MyCompositeObjects …