PurchaseOrderList.xaml 816 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <mobile:MobilePage
  3. xmlns:local="clr-namespace:PRS.Mobile"
  4. xmlns="http://xamarin.com/schemas/2014/forms"
  5. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  6. xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
  7. x:Class="PRS.Mobile.PurchaseOrderList"
  8. Title="Purchase Orders">
  9. <mobile:MobilePage.PrimaryMenu>
  10. <mobile:MobileMenuButton
  11. x:Name="_filter"
  12. Image="lines"
  13. IsVisible="False"/>
  14. </mobile:MobilePage.PrimaryMenu>
  15. <mobile:MobilePage.PageContent>
  16. <local:PurchaseOrderListView
  17. x:Name="_list"
  18. PurchaseOrderSelected="_list_OnPurchaseOrderSelected"
  19. />
  20. </mobile:MobilePage.PageContent>
  21. </mobile:MobilePage>