123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="utf-8"?>
- <mobile:MobilePage 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"
- xmlns:local="clr-namespace:PRS.Mobile;assembly=PRS.Mobile"
- x:Class="PRS.Mobile.DocScannerModule"
- Title="Submitted Documents">
- <mobile:MobilePage.PrimaryMenu>
-
- <mobile:MobileMenuButton
- Image="plus">
- <mobile:MobileMenuButton.Items>
- <mobile:MobileMenuItem Text="Take Photo" Clicked="TakePhoto_Clicked"/>
- <mobile:MobileMenuItem Text="Browse Library" Clicked="BrowseLibrary_Clicked"/>
- </mobile:MobileMenuButton.Items>
- </mobile:MobileMenuButton>
-
- </mobile:MobilePage.PrimaryMenu>
-
- <mobile:MobilePage.PageContent>
- <local:DocumentList
- x:Name="_documents"
- PullToRefresh="True"
- RefreshRequested="_documents_OnRefreshRequested"
- ShowRecordCount = "True"
- Margin="5"/>
- </mobile:MobilePage.PageContent>
-
- </mobile:MobilePage>
|