DigitalFormHost.xaml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <mobile:MobilePage xmlns:local="clr-namespace:PRS.Mobile"
  3. xmlns="http://xamarin.com/schemas/2014/forms"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  5. xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
  6. x:Class="PRS.Mobile.DigitalFormHost">
  7. <mobile:MobilePage.PrimaryMenu>
  8. <ImageButton x:Name="_saveButton" Source="save" Clicked="SaveBtn_Clicked"/>
  9. </mobile:MobilePage.PrimaryMenu>
  10. <mobile:MobilePage.PageContent>
  11. <Grid Margin="5" RowSpacing="5">
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="*"/>
  14. <RowDefinition Height="auto"/>
  15. </Grid.RowDefinitions>
  16. <ScrollView
  17. x:Name="formViewerScroller"
  18. Grid.Row="0"
  19. />
  20. <mobile:MobileButton
  21. Grid.Row="1"
  22. IsVisible="false"
  23. Text="View Attached Document"
  24. Clicked="DocumentBtn_Clicked"
  25. x:Name="documentBtn"/>
  26. </Grid>
  27. </mobile:MobilePage.PageContent>
  28. </mobile:MobilePage>