| 1234567891011121314151617181920 |
- <?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.StockLocationViewCell">
- <ContentView.Content>
- <Frame BorderColor="#c71585" Margin="2" CornerRadius="15" Padding="5" HasShadow="False" BackgroundColor="{Binding Color}">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="auto"/>
- </Grid.RowDefinitions>
- <Label Grid.Row="0" Text="{Binding Description}" FontAttributes="Bold" HorizontalOptions="Center"/>
- <Label Grid.Row="1" Text="{Binding NumberOfReceivedItems}"/>
- <StackLayout Grid.Row="2" x:Name="poItemStackLayout" Spacing="0"/>
- </Grid>
- </Frame>
- </ContentView.Content>
- </ContentView>
|