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 …
0
votes
what is the best way to display a ‘loading’ indicator on a WPF control
If you are running it on Vista, you could also just use the default wait cursor.
this.Cursor = Cursors.Wait;
…
