Advertisement
Guest User

Untitled

a guest
Aug 1st, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <ContentView>
  2. <Grid>
  3. <Image Source="{Binding MyImageSource}"/>
  4. </Grid>
  5. </ContentView>
  6.  
  7. <ContentPage xmlns:local="namespace;assembly">
  8. <ContentPage.Content>
  9. <OnIdiom x:TypeArguments="View">
  10. <OnIdiom.Phone>
  11. <ListView>
  12. ... on list item tap do Navigation.PushAsync(new PhotoItemPage{BindingContext = itemTapped} );
  13. </ListView>
  14. </OnIdiom.Phone>
  15. <OnIdiom.Tablet>
  16. <Grid> // Add two columns
  17. <ListView Grid.Column="0">
  18. ... on list item tap do PhotoItem.BindingContext = itemTapped
  19. </ListView>
  20. <local:PhotoItem Grid.Column="1"/>
  21. </OnIdiom.Tablet>
  22. </OnIdiom>
  23. </ContentPage.Content>
  24. </ContentPage>
  25.  
  26. <ContentPage xmlns:local="namespace;assembly">
  27. <local:PhotoItem>
  28. </ContentPage>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement