Is is possible to have grouped GridView without using CollectionViewSource?
        Posted  
        
            by 
                Sergey Aldoukhov
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Sergey Aldoukhov
        
        
        
        Published on 2012-09-23T01:16:40Z
        Indexed on 
            2012/09/24
            3:37 UTC
        
        
        Read the original article
        Hit count: 304
        
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}"
        >
??
© Stack Overflow or respective owner