Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <CollectionViewSource
  2. x:Name="groupedItemsViewSource"
  3. Source="{Binding Groups}"
  4. IsSourceGrouped="true"
  5. ItemsPath="TopItems"
  6. d:Source="{Binding AllGroups, Source={d:DesignInstance Type=data:SampleDataSource, IsDesignTimeCreatable=True}}"/>
  7.  
  8. <GridView.GroupStyle>
  9. <GroupStyle HeaderTemplate="{StaticResource MyGroupHeaderTemplate}"
  10. Panel="{StaticResource MyGroupItemsPanelTemplate}"
  11. HidesIfEmpty="True" />
  12. </GridView.GroupStyle>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement