RecTransferPopup.xaml 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <mobile:MobilePage xmlns:local="clr-namespace:PRS.Mobile" xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="PRS.Mobile.RecTransferPopup"
  5. xmlns:material="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
  6. xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
  7. material:MaterialNavigationPage.AppBarColor="#a2006d">
  8. <!--NavigationPage.TitleView>
  9. <Button Text="Back" FontSize="Medium" TextColor="White" VerticalOptions="Center" HorizontalOptions="Start" Clicked="BackBtn_Clicked"
  10. BackgroundColor="Transparent"/>
  11. </NavigationPage.TitleView-->
  12. <mobile:MobilePage.PageContent>
  13. <ScrollView>
  14. <StackLayout>
  15. <Frame BorderColor="#9f4576" CornerRadius="10">
  16. <Grid>
  17. <Grid.RowDefinitions>
  18. <RowDefinition Height="auto"/>
  19. <RowDefinition Height="auto"/>
  20. <RowDefinition Height="auto"/>
  21. <RowDefinition Height="auto"/>
  22. </Grid.RowDefinitions>
  23. <Frame Grid.Row="0" BorderColor="#9f4576" CornerRadius="10" HasShadow="False">
  24. <StackLayout>
  25. <Label Text="Job: " HorizontalOptions="Center" FontSize="Medium" FontAttributes="Bold"/>
  26. <Button x:Name="jobBtn" Text="Change" Clicked="SelectJob_Clicked" HorizontalOptions="FillAndExpand"
  27. Padding="3" FontSize="Medium" TextColor="White" BackgroundColor="#15C7C1" FontAttributes="Bold" CornerRadius="5"/>
  28. </StackLayout>
  29. </Frame>
  30. <Frame Grid.Row="1" BorderColor="#9f4576" CornerRadius="10" HasShadow="False">
  31. <StackLayout>
  32. <Label Text="Finish: " HorizontalOptions="Center" FontSize="Medium" FontAttributes="Bold"/>
  33. <Button x:Name="styleBtn" Text="Change" Clicked="SelectStyle_Clicked" HorizontalOptions="FillAndExpand"
  34. Padding="3" FontSize="Medium" TextColor="White" BackgroundColor="#15C7C1" FontAttributes="Bold" CornerRadius="5"/>
  35. </StackLayout>
  36. </Frame>
  37. <Frame Grid.Row="2" BorderColor="#9f4576" CornerRadius="10" HasShadow="False">
  38. <StackLayout>
  39. <Label Text="Qty: " FontSize="Medium" FontAttributes="Bold" HorizontalOptions="CenterAndExpand" HorizontalTextAlignment="Center"/>
  40. <Entry x:Name="qty" HorizontalOptions="FillAndExpand" HorizontalTextAlignment="Center" TextChanged="Qty_Changed"/>
  41. </StackLayout>
  42. </Frame>
  43. <Frame Grid.Row="3" BorderColor="Transparent" HasShadow="False">
  44. <Button Text="Accept" HorizontalOptions="FillAndExpand" Clicked="AcceptBtn_Clicked" x:Name="accept_Btn"
  45. Padding="3" FontSize="Medium" TextColor="White" BackgroundColor="#15C7C1" FontAttributes="Bold" CornerRadius="5"/>
  46. </Frame>
  47. </Grid>
  48. </Frame>
  49. <Frame BorderColor="#9f4576" CornerRadius="10" HeightRequest="600" HasShadow="False">
  50. <StackLayout>
  51. <Label Text="Image" HorizontalOptions="Center" FontSize="Medium" FontAttributes="Bold"/>
  52. <Image x:Name="productImage" HorizontalOptions="Center" Margin="5"/>
  53. </StackLayout>
  54. </Frame>
  55. </StackLayout>
  56. </ScrollView>
  57. </mobile:MobilePage.PageContent>
  58. </mobile:MobilePage>