Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <CollectionView>
  2. <CollectionView.ItemsSource>
  3. <x:Array Type="{x:Type x:String}">
  4. <x:String>First TeamMate</x:String>
  5. <x:String>Second TeamMate</x:String>
  6. <x:String>Third TeamMate</x:String>
  7. </x:Array>
  8.  
  9. </CollectionView.ItemsSource>
  10. <CollectionView.ItemTemplate>
  11. <DataTemplate>
  12. <Label Text="{Binding .}" />
  13. </DataTemplate>
  14. </CollectionView.ItemTemplate>
  15. </CollectionView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement