Guest User

Untitled

a guest
Jan 19th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <controls:CarouselViewControl>
  2. <controls:CarouselViewControl.ItemsSource>
  3. <x:Array Type="{x:Type View}">
  4.  
  5. <views:PestView>
  6. <x:Arguments>
  7. <x:Object> ??? </x:Object>
  8. </x:Arguments>
  9. </views:PestView>
  10.  
  11. <!-- View 2 -->
  12.  
  13. <!-- View 3 -->
  14.  
  15. </x:Array>
  16. </controls:CarouselViewControl.ItemsSource>
  17. </controls:CarouselViewControl>
  18.  
  19. public partial class PestView : ContentView
  20. {
  21. public PestView (Crop crop)
  22. {
  23. InitializeComponent();
  24. BindingContext = new PestsViewModel(crop.Specie.Pests);
  25. }
  26. }
Add Comment
Please, Sign In to add comment