Reputation: 4972
In Windows RT, the ListBox seems to be missing the Sort method. How would I sort the items alphabetically?
Upvotes: 0
Views: 1028
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