StockLocationViewCell.xaml 996 B

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