Advertisement
Guest User

xaml

a guest
Jul 21st, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <Page.Resources>
  2. <DataTemplate x:Key="GroupTemplate">
  3. <Grid>
  4. <Grid.RowDefinitions>
  5. <RowDefinition Height="Auto"/>
  6. <RowDefinition Height="*"/>
  7. </Grid.RowDefinitions>
  8. <TextBlock Grid.Row="0" Text="{Binding Title}" Style="{ThemeResource ListViewItemTextBlockStyle}"/>
  9. <TextBlock Grid.Row="1" Text="{Binding Artist}" Style="{ThemeResource ListViewItemContentTextBlockStyle}"/>
  10. </Grid>
  11. </DataTemplate>
  12. </Page.Resources>
  13.  
  14. <Grid>
  15. <GridView
  16. x:Name="contentList"
  17. Margin="0, 125, 0, 0"
  18. HorizontalAlignment="Stretch"
  19. VerticalAlignment="Stretch"
  20. ItemsSource="{Binding}"
  21. ItemTemplate="{StaticResource GroupTemplate}"/>
  22. </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement