Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <ListView x:Name="xxxx" HasUnevenRows="True" SeparatorVisibility="None" VerticalOptions="FillAndExpand">
  2. <ListView.ItemTemplate>
  3. <DataTemplate>
  4. <ViewCell>
  5. <Grid BackgroundColor="White">
  6. <Image Source = {Binding image} Grid.Row = {Binding rowNo} Grid.Column = {Binding columnNo}/>
  7. </Grid>
  8. </ViewCell>
  9. </DataTemplate>
  10. </ListView.ItemTemplate>
  11. </ListView>
  12.  
  13. new item { image = "x.png", rowNo = "1", columnNo = "0"}
  14.  
  15. 1
  16. 1
  17. 1
  18. 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement