| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?xml version="1.0" encoding="utf-8"?>
- <local:ManufacturingPacketEditView
- xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- xmlns:local="clr-namespace:PRS.Mobile;assembly=PRS.Mobile"
- xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
- x:Class="PRS.Mobile.ManufacturingPacketEditDetailsView">
-
- <local:ManufacturingPacketEditView.Content>
-
-
- <ScrollView VerticalOptions="Start">
-
- <StackLayout VerticalOptions="Start">
-
-
- <Label
- x:Name="IssuesTitle"
- VerticalOptions="Center"
- HorizontalOptions="Center"
- FontAttributes="Bold"
- FontSize="Medium"
- Text="Issues"/>
-
- <Frame
- x:Name="IssuesFrame"
- BorderColor="Gray"
- Margin="0"
- CornerRadius="5"
- Padding="5"
- HasShadow="False"
- BackgroundColor="Coral">
-
- <Label
- x:Name="IssuesLbl"
- FontSize="Small"
- FontAttributes="Bold"
- HorizontalTextAlignment="Center"
- LineBreakMode="WordWrap"
- VerticalOptions="StartAndExpand"/>
-
- </Frame>
-
- <Label
- VerticalOptions="Center"
- HorizontalOptions="Center"
- FontAttributes="Bold"
- FontSize="Medium"
- Text="Status"/>
-
-
- <mobile:MobileGrid
- x:Name="_stages"
- PullToRefresh="False"
- CanSearch="False"
- SelectionMode="None"
- />
-
- <Frame
- IsVisible="false"
- x:Name="ETAFrame"
- BorderColor="Gray"
- Margin="0"
- CornerRadius="5"
- Padding="5"
- HasShadow="False">
-
- <Label
- x:Name="ETALbl"
- FontSize="Small"
- FontAttributes="Bold"
- HorizontalTextAlignment="Center"
- LineBreakMode="WordWrap"/>
-
- </Frame>
-
- </StackLayout>
-
- </ScrollView>
- </local:ManufacturingPacketEditView.Content>
-
- </local:ManufacturingPacketEditView>
|