Guest User

Untitled

a guest
Oct 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <ItemsControl.GroupStyle>
  2. <GroupStyle>
  3. <GroupStyle.HeaderTemplate>
  4. <DataTemplate>
  5. <TextBlock Text="{Binding Name}" />
  6. </DataTemplate>
  7. </GroupStyle.HeaderTemplate>
  8. <GroupStyle.Panel>
  9. <ItemsPanelTemplate>
  10. <StackPanel Orientation="Horizontal" />
  11. </ItemsPanelTemplate>
  12. </GroupStyle.Panel>
  13. </GroupStyle>
  14. </ItemsControl.GroupStyle>
  15.  
  16. CollectionViewSource.GetDefaultView(this.DataContext).GroupDescriptions.Add(new PropertyGroupDescription("Group"));
  17. CollectionViewSource.GetDefaultView(this.DataContext).GroupDescriptions.Add(new PropertyGroupDescription("CreateDate"));
Add Comment
Please, Sign In to add comment