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 …
4
votes

What is the difference between the WPF TextBlock element and Label control?

Another great answer: Josh Smith on WPF …
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; …
1
vote

wpf dynamic window

For your dynamic adding of buttons, you could make an ItemsControl instead of a StackPanel and bind the ItemsSource to your list of things to create buttons for ( …