msbg
msbg

Reputation: 4972

How to sort ListBox items alphabetically in WinRT?

In Windows RT, the ListBox seems to be missing the Sort method. How would I sort the items alphabetically?

Upvotes: 0

Views: 1028

Answers (1)

akton
akton

Reputation: 14386

You sort the list it's bound on, usually by sorting the list directly, since sorting and filtering the ICollectionView have been omitted in WinRT. See Creating a Sorted Collection View in WinRT for more information.

Upvotes: 2

Related Questions