| 12345678910111213141516171819 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ContentView xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- x:Class="comal.timesheets.JobDocFilterItem">
- <ContentView.Content>
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="auto"/>
- </Grid.ColumnDefinitions>
- <Label Grid.Column="0" x:Name="textLbl"/>
- <Image Grid.Column="1" Source="closee.png" HeightRequest="15" WidthRequest="15">
- <Image.GestureRecognizers>
- <TapGestureRecognizer Tapped="Close_Tapped"/>
- </Image.GestureRecognizers>
- </Image>
- </Grid>
- </ContentView.Content>
- </ContentView>
|