Advertisement
Guest User

Untitled

a guest
Oct 19th, 2021
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.01 KB | None | 0 0
  1. <CollectionView ItemsSource="{Binding ResponseResponses}" SelectionMode="Single" >
  2.                     <CollectionView.ItemTemplate>
  3.                         <DataTemplate>
  4.                             <StackLayout>
  5.                                 <StackLayout.GestureRecognizers>
  6.                                     <TapGestureRecognizer Command="{Binding SearchCommand}" NumberOfTapsRequired="1"/>
  7.                                 </StackLayout.GestureRecognizers>
  8.                                 <Label Text="{Binding Username, StringFormat=User: {0}}" />
  9.                                 <Label Text="{Binding FileCount, StringFormat=Files: {0}}" />
  10.                                 <BoxView   HeightRequest="1"
  11.                                           BackgroundColor="LightGray"
  12.                                           VerticalOptions="End"/>      
  13.                             </StackLayout>
  14.                         </DataTemplate>
  15.                     </CollectionView.ItemTemplate>
  16.                 </CollectionView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement