Advertisement
Guest User

Untitled

a guest
May 26th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.48 KB | None | 0 0
  1. <GridView>
  2. <GridView.ItemTemplate>
  3. <DataTemplate>
  4. <Grid Height="120" Width="310" Margin="5,10,5,10">
  5. <Grid.RowDefinitions>
  6. <RowDefinition Height="Auto"/>
  7. <RowDefinition Height="*"/>
  8. </Grid.RowDefinitions>
  9. <Border Background="{ThemeResource
  10. ListViewItemPlaceholderBackgroundThemeBrush}" Height="150">
  11. <Image Source="{Binding ImagePath}"
  12. Stretch="UniformToFill" AutomationProperties.Name="{Binding Title}"/>
  13. </Border>
  14. </Grid>
  15. </DataTemplate>
  16. </GridView.ItemTemplate>
  17. </GridView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement