Advertisement
Guest User

Untitled

a guest
May 31st, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <ListView BackgroundColor="Green" Grid.Column="1" Grid.Row="3" Grid.RowSpan="4" x:Name="lstVehiclePlatformSelection" ItemsSource="{Binding VehiclePlatforms}" >
  2.  
  3. <ListView.ItemTemplate>
  4. <DataTemplate>
  5. <ImageCell x:Name="cell1"
  6. Text="{Binding MainText}"
  7. Detail="{Binding DetailText}"
  8. TextColor="Blue"
  9. DetailColor="Red">
  10.  
  11. <b:Interaction.Behaviors>
  12. <b:BehaviorCollection>
  13. <b:EventToCommand EventName="Tapped" Command="{Binding GoToNextPageCommand}" CommandParameter="{x:Reference cell1}"/>
  14. </b:BehaviorCollection>
  15. </b:Interaction.Behaviors>
  16.  
  17. </ImageCell>
  18. </DataTemplate>
  19. </ListView.ItemTemplate>
  20. </ListView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement