JobDocFilterItem.xaml 813 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ContentView xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="comal.timesheets.JobDocFilterItem">
  5. <ContentView.Content>
  6. <Grid>
  7. <Grid.ColumnDefinitions>
  8. <ColumnDefinition Width="*"/>
  9. <ColumnDefinition Width="auto"/>
  10. </Grid.ColumnDefinitions>
  11. <Label Grid.Column="0" x:Name="textLbl"/>
  12. <Image Grid.Column="1" Source="closee.png" HeightRequest="15" WidthRequest="15">
  13. <Image.GestureRecognizers>
  14. <TapGestureRecognizer Tapped="Close_Tapped"/>
  15. </Image.GestureRecognizers>
  16. </Image>
  17. </Grid>
  18. </ContentView.Content>
  19. </ContentView>