| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?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.CustomControls.StoreRequiItem">
- <ContentView.Content>
- <Frame Margin="5" Padding="2" CornerRadius="10" BorderColor="#087f23" HasShadow="False">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <!--row 0-->
- <RowDefinition Height="auto"/>
- <!--row 1-->
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="60"/>
- <!--col 0-->
- <ColumnDefinition Width="60"/>
- <!--col 1-->
- <ColumnDefinition Width="*"/>
- <!--col 2-->
- <ColumnDefinition Width="60"/>
- <!--col 3-->
- </Grid.ColumnDefinitions>
- <!--col 0-->
- <Button Grid.Row="0" Grid.RowSpan="2" Grid.Column="0"
- x:Name="reduceQtyBtn" Text="-" Clicked="ReduceQtyBtn_Clicked"
- FontSize="Medium" TextColor="White" BackgroundColor="#15C7C1" FontAttributes="Bold" VerticalOptions="Center" Margin="5,0,0,0" CornerRadius="5"/>
- <!--col 1-->
- <Entry Grid.Row="0" Grid.RowSpan="2" Grid.Column="1"
- x:Name="qtyLbl" Text="" TextChanged="qtyEntry_Changed" Keyboard="Numeric" TextColor="DimGray"
- FontSize="Large" FontAttributes="Bold" HorizontalTextAlignment="Center" VerticalTextAlignment="Center" VerticalOptions="Center"/>
- <!--col 2-->
- <Label Grid.Row="0" Grid.Column="2"
- x:Name="productLbl" Text="Product Description"
- FontSize="Medium" FontAttributes="Bold" HorizontalTextAlignment="Start" VerticalTextAlignment="Center" VerticalOptions="Center"/>
- <!--row 1-->
- <Label Grid.Row="1" Grid.Column="2"
- x:Name="locationLbl" Text="Shelf Number"
- FontSize="Medium" FontAttributes="Bold" HorizontalTextAlignment="Start" VerticalTextAlignment="Center" VerticalOptions="Center"/>
- <!--col 3-->
- <Button Grid.Row="0" Grid.RowSpan="2" Grid.Column="3"
- x:Name="increaseQtyBtn" Text="+" Clicked="IncreaseQtyBtn_Clicked"
- FontSize="Medium" TextColor="White" BackgroundColor="#15C7C1" FontAttributes="Bold" VerticalOptions="Center" Margin="0,0,5,0" CornerRadius="5"/>
- </Grid>
- </Frame>
- </ContentView.Content>
- </ContentView>
|