I need to sort the strings in a ListBox, but it is bound to the view model by another component via the DataContext. So I can't directly instantiate the view model in xaml, as in this example, which uses the ObjectDataProvider:

http://www.galasoft.ch/mydotnet/articles/article-2007081301.aspx

in my xaml:

<ListBox ItemsSource="{Binding CollectionOfStrings}" />

in my view model:

public ObservableCollection<string> CollectionOfStrings
{
  get { return collectionOfStrings; }
}

in another component:

view.DataContext = new ViewModel();

there is no code behind!

So using purely xaml, how would I sort the items in the ListBox? Again, the xaml doesn't own the instantiation of the view model.

Thanks!

link|improve this question

80% accept rate
feedback

1 Answer

up vote 14 down vote accepted

Use a CollectionViewSource:

<CollectionViewSource x:Key="SortedItems" Source="{Binding CollectionOfStrings}">
    <CollectionViewSource.SortDescriptions>
        <scm:SortDescription PropertyName="SomePropertyOnYourItems"/>
    </CollectionViewSource.SortDescriptions>
</CollectionViewSource>

<ListBox ItemsSource="{Binding Source={StaticResource SortedItems}}"/>

You might want to wrap your strings in a custom VM class so you can more easily apply sorting behavior.

link|improve this answer
Thanks, Kent! Binding the Source attribute on a CollectionViewSource was the missing link for me. I appreciate it. In this case, I didn't want a custom VM class, so I just left off the PropertyName attribute, which apparently works for string collections just fine. – Eben Geer Aug 15 '09 at 1:04
Also, to any onlookers out there, the SortDescription tag takes a Direction attribute. – Eben Geer Aug 15 '09 at 1:05
What if the ListBox is a part of a DataTemplate representing a property of a object that is a list of items. Can't I do the sorting inside the ListBox somehow? – Ingó Vals Dec 29 '10 at 11:23
1  
Can you tell us where the smc namespace looks like. I'm not succesfully finding SortDescription using Xaml. – Ingó Vals Jun 11 '11 at 13:50
3  
Comment by franssu: scm includes the "System.ComponentModel" namespace from the WindowsBase assembly. (xmlns:scm="clr-namespace:System.ComponentModel;assembly=WindowsBase") – Shadow Wizard Jun 21 '11 at 8:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.