Is is possible to have grouped GridView without using CollectionViewSource?
- by Sergey Aldoukhov
It is just seems to be a little awkward design to tie a feature to a class instead of interface. Has anybody managed to group GridView without CollectionViewSource?
Also a bonus question here: why you have to refer to the CollectionViewSource resource through binding:
<GridView
ItemsSource="{Binding Source={StaticResource groupedData}}"
>
instead of
<GridView
ItemsSource="{StaticResource groupedData}"
>
??