| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?xml version="1.0" encoding="utf-8" ?>
- <mobile:MobilePage xmlns:local="clr-namespace:PRS.Mobile" xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- x:Class="PRS.Mobile.ConsignmentDetailsPopup"
- xmlns:material="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
- xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
- material:MaterialNavigationPage.AppBarColor="#a2006d"
- Title="Confirm PO Item Details">
- <mobile:MobilePage.PageContent>
- <ScrollView HorizontalOptions="Center">
- <StackLayout>
- <Frame BorderColor="#9f4576" CornerRadius="10" Margin="3">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="auto"/>
- </Grid.RowDefinitions>
- <Frame Grid.Row="0" BorderColor="#9f4576" CornerRadius="10">
- <Label x:Name="titleLbl" HorizontalOptions="Center" FontSize="Medium" FontAttributes="Bold"/>
- </Frame>
- <Frame Grid.Row="1" BorderColor="#9f4576" CornerRadius="10">
- <StackLayout>
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="2*"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <Label Grid.Column="0"
- Text="Choose Location:" HorizontalOptions="Center" FontSize="Medium" FontAttributes="Bold" VerticalOptions="Center"/>
- <Button Grid.Column="1"
- x:Name="locationBtn" Text="Add" Clicked="AddLocation_Clicked" HorizontalOptions="FillAndExpand"
- Padding="3" FontSize="Medium" TextColor="White" BackgroundColor="#15C7C1" FontAttributes="Bold" CornerRadius="5"/>
- </Grid>
- <Grid HorizontalOptions="Center">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="auto"/>
- <ColumnDefinition Width="auto"/>
- </Grid.ColumnDefinitions>
- <CheckBox Grid.Column="0" CheckedChanged="SetDefaultLocationCb_CheckChanged" VerticalOptions="Center"
- x:Name="setDefaultCb"/>
- <Label Grid.Column="1" VerticalOptions="Center"
- Text="Set as Default Location from now on"/>
- </Grid>
- <StackLayout x:Name="locationStackLayout">
-
- </StackLayout>
- </StackLayout>
- </Frame>
- <Frame Grid.Row="2" BorderColor="#9f4576" CornerRadius="10">
- <StackLayout>
- <Label Text="Qty: " HorizontalOptions="FillAndExpand" HorizontalTextAlignment="Center" FontSize="Medium" FontAttributes="Bold"/>
- <Entry x:Name="qtyEnt" HorizontalOptions="FillAndExpand" TextChanged="Qty_Changed" HorizontalTextAlignment="Center"/>
- </StackLayout>
- </Frame>
- <Frame Grid.Row="3" BorderColor="Transparent">
- <Button Text="Accept" HorizontalOptions="FillAndExpand" Clicked="AcceptBtn_Clicked"
- Padding="3" FontSize="Medium" TextColor="White" BackgroundColor="#15C7C1" FontAttributes="Bold" CornerRadius="5"/>
- </Frame>
- </Grid>
- </Frame>
- </StackLayout>
- </ScrollView>
- </mobile:MobilePage.PageContent>
- </mobile:MobilePage>
|