DocScannerModule.xaml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mobile:MobilePage xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
  5. xmlns:local="clr-namespace:PRS.Mobile;assembly=PRS.Mobile"
  6. x:Class="PRS.Mobile.DocScannerModule"
  7. Title="Submitted Documents">
  8. <mobile:MobilePage.PrimaryMenu>
  9. <mobile:MobileMenuButton
  10. Image="plus">
  11. <mobile:MobileMenuButton.Items>
  12. <mobile:MobileMenuItem Text="Take Photo" Clicked="TakePhoto_Clicked"/>
  13. <mobile:MobileMenuItem Text="Browse Library" Clicked="BrowseLibrary_Clicked"/>
  14. </mobile:MobileMenuButton.Items>
  15. </mobile:MobileMenuButton>
  16. </mobile:MobilePage.PrimaryMenu>
  17. <mobile:MobilePage.PageContent>
  18. <local:DocumentList
  19. x:Name="_documents"
  20. PullToRefresh="True"
  21. RefreshRequested="_documents_OnRefreshRequested"
  22. ShowRecordCount = "True"
  23. Margin="5"/>
  24. </mobile:MobilePage.PageContent>
  25. </mobile:MobilePage>