1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?xml version="1.0" encoding="utf-8" ?>
- <timesheets:BasePage xmlns:timesheets="clr-namespace:comal.timesheets" xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- x:Class="comal.timesheets.Deliveries.DeliveryDocket">
- <timesheets:BasePage.PageContent>
- <!--<ScrollView>
- <StackLayout x:Name="deliveryItemsList">
- </StackLayout>
- </ScrollView>-->
- <StackLayout>
- <Entry x:Name="searchEnt" Placeholder="Search" TextChanged="SearchEnt_Changed"/>
- <Label x:Name="numberOfItems" Margin="5" FontSize="Medium" FontAttributes="Bold" />
- <ListView x:Name="DeliveryItemList" HasUnevenRows="True" BackgroundColor="Transparent" Margin="0,0,0,0">
- <ListView.ItemTemplate>
- <DataTemplate>
- <ViewCell>
- <Frame Padding="5" BorderColor="#15C7C1" Margin="2" CornerRadius="10">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="auto"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <Label Text="{Binding Rack}" FontAttributes="Bold" Grid.Row="0" Grid.Column="0" LineBreakMode="WordWrap"/>
- <Label Text="{Binding Setout}" FontAttributes="Bold" Grid.Row="1" Grid.Column="0" LineBreakMode="WordWrap"/>
- <Label Text="{Binding Description}" FontAttributes="Bold" Grid.Row="0" Grid.Column="1" LineBreakMode="WordWrap"/>
- <Label Text="{Binding Requi}" FontAttributes="Bold" Grid.Row="1" Grid.Column="1" LineBreakMode="WordWrap"/>
- </Grid>
- </Frame>
- </ViewCell>
- </DataTemplate>
- </ListView.ItemTemplate>
- </ListView>
- </StackLayout>
- </timesheets:BasePage.PageContent>
- </timesheets:BasePage>
|