ManufacturingPacketEditDetailsView.xaml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <local:ManufacturingPacketEditView
  3. xmlns="http://xamarin.com/schemas/2014/forms"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  5. xmlns:local="clr-namespace:PRS.Mobile;assembly=PRS.Mobile"
  6. xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
  7. x:Class="PRS.Mobile.ManufacturingPacketEditDetailsView">
  8. <local:ManufacturingPacketEditView.Content>
  9. <ScrollView VerticalOptions="Start">
  10. <StackLayout VerticalOptions="Start">
  11. <Label
  12. x:Name="IssuesTitle"
  13. VerticalOptions="Center"
  14. HorizontalOptions="Center"
  15. FontAttributes="Bold"
  16. FontSize="Medium"
  17. Text="Issues"/>
  18. <Frame
  19. x:Name="IssuesFrame"
  20. BorderColor="Gray"
  21. Margin="0"
  22. CornerRadius="5"
  23. Padding="5"
  24. HasShadow="False"
  25. BackgroundColor="Coral">
  26. <Label
  27. x:Name="IssuesLbl"
  28. FontSize="Small"
  29. FontAttributes="Bold"
  30. HorizontalTextAlignment="Center"
  31. LineBreakMode="WordWrap"
  32. VerticalOptions="StartAndExpand"/>
  33. </Frame>
  34. <Label
  35. VerticalOptions="Center"
  36. HorizontalOptions="Center"
  37. FontAttributes="Bold"
  38. FontSize="Medium"
  39. Text="Status"/>
  40. <mobile:MobileGrid
  41. x:Name="_stages"
  42. PullToRefresh="False"
  43. CanSearch="False"
  44. SelectionMode="None"
  45. />
  46. <Frame
  47. IsVisible="false"
  48. x:Name="ETAFrame"
  49. BorderColor="Gray"
  50. Margin="0"
  51. CornerRadius="5"
  52. Padding="5"
  53. HasShadow="False">
  54. <Label
  55. x:Name="ETALbl"
  56. FontSize="Small"
  57. FontAttributes="Bold"
  58. HorizontalTextAlignment="Center"
  59. LineBreakMode="WordWrap"/>
  60. </Frame>
  61. </StackLayout>
  62. </ScrollView>
  63. </local:ManufacturingPacketEditView.Content>
  64. </local:ManufacturingPacketEditView>