| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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.RecTransferPopup"
- xmlns:material="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
- material:MaterialNavigationPage.AppBarColor="#a2006d">
- <NavigationPage.TitleView>
- <Button Text="Back" FontSize="Medium" TextColor="White" VerticalOptions="Center" HorizontalOptions="Start" Clicked="BackBtn_Clicked"
- BackgroundColor="Transparent"/>
- </NavigationPage.TitleView>
- <timesheets:BasePage.PageContent>
- <ScrollView>
- <StackLayout>
-
- <Frame BorderColor="#9f4576" CornerRadius="10">
- <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" HasShadow="False">
- <StackLayout>
- <Label Text="Job: " HorizontalOptions="Center" FontSize="Medium" FontAttributes="Bold"/>
- <Button x:Name="jobBtn" Text="Change" Clicked="SelectJob_Clicked" HorizontalOptions="FillAndExpand"
- Padding="3" FontSize="Medium" TextColor="White" BackgroundColor="#15C7C1" FontAttributes="Bold" CornerRadius="5"/>
- </StackLayout>
- </Frame>
- <Frame Grid.Row="1" BorderColor="#9f4576" CornerRadius="10" HasShadow="False">
- <StackLayout>
- <Label Text="Finish: " HorizontalOptions="Center" FontSize="Medium" FontAttributes="Bold"/>
- <Button x:Name="styleBtn" Text="Change" Clicked="SelectStyle_Clicked" HorizontalOptions="FillAndExpand"
- Padding="3" FontSize="Medium" TextColor="White" BackgroundColor="#15C7C1" FontAttributes="Bold" CornerRadius="5"/>
- </StackLayout>
- </Frame>
- <Frame Grid.Row="2" BorderColor="#9f4576" CornerRadius="10" HasShadow="False">
- <StackLayout>
- <Label Text="Qty: " FontSize="Medium" FontAttributes="Bold" HorizontalOptions="CenterAndExpand" HorizontalTextAlignment="Center"/>
- <Entry x:Name="qty" HorizontalOptions="FillAndExpand" HorizontalTextAlignment="Center" TextChanged="Qty_Changed"/>
- </StackLayout>
- </Frame>
- <Frame Grid.Row="3" BorderColor="Transparent" HasShadow="False">
- <Button Text="Accept" HorizontalOptions="FillAndExpand" Clicked="AcceptBtn_Clicked" x:Name="accept_Btn"
- Padding="3" FontSize="Medium" TextColor="White" BackgroundColor="#15C7C1" FontAttributes="Bold" CornerRadius="5"/>
- </Frame>
- </Grid>
- </Frame>
- <Frame BorderColor="#9f4576" CornerRadius="10" HeightRequest="600" HasShadow="False">
- <StackLayout>
- <Label Text="Image" HorizontalOptions="Center" FontSize="Medium" FontAttributes="Bold"/>
- <Image x:Name="productImage" HorizontalOptions="Center" Margin="5"/>
- </StackLayout>
- </Frame>
-
- </StackLayout>
- </ScrollView>
- </timesheets:BasePage.PageContent>
- </timesheets:BasePage>
|