1234567891011121314151617181920212223242526272829303132 |
- <?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"
- xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
- x:Class="PRS.Mobile.DigitalFormHost">
- <mobile:MobilePage.PrimaryMenu>
- <ImageButton x:Name="_saveButton" Source="save" Clicked="SaveBtn_Clicked"/>
- </mobile:MobilePage.PrimaryMenu>
- <mobile:MobilePage.PageContent>
- <Grid Margin="5" RowSpacing="5">
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="auto"/>
- </Grid.RowDefinitions>
- <ScrollView
- x:Name="formViewerScroller"
- Grid.Row="0"
- />
- <mobile:MobileButton
- Grid.Row="1"
- IsVisible="false"
- Text="View Attached Document"
- Clicked="DocumentBtn_Clicked"
- x:Name="documentBtn"/>
- </Grid>
- </mobile:MobilePage.PageContent>
- </mobile:MobilePage>
|