| 12345678910111213141516171819202122232425 |
- <?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.PurchaseOrderList"
- Title="Purchase Orders">
-
- <mobile:MobilePage.PrimaryMenu>
- <mobile:MobileMenuButton
- x:Name="_filter"
- Image="lines"
- IsVisible="False"/>
- </mobile:MobilePage.PrimaryMenu>
-
- <mobile:MobilePage.PageContent>
-
- <local:PurchaseOrderListView
- x:Name="_list"
- PurchaseOrderSelected="_list_OnPurchaseOrderSelected"
- />
- </mobile:MobilePage.PageContent>
- </mobile:MobilePage>
|