SiteITPForms.xaml 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <mobile:MobilePage xmlns:local="clr-namespace:PRS.Mobile" xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:ui="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
  5. xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
  6. x:Class="PRS.Mobile.SiteITPForms"
  7. Title="{Binding Description}"
  8. x:DataType="local:JobITPShell">
  9. <mobile:MobilePage.Resources>
  10. <local:ExistingFormBackgroundColorConverter x:Key="ExistingFormColorConverter"/>
  11. <local:ExistingFormStatusConverter x:Key="ExistingFormStatusConverter"/>
  12. </mobile:MobilePage.Resources>
  13. <mobile:MobilePage.PrimaryMenu>
  14. <ImageButton x:Name="Add" Source="plus" Clicked="Add_Clicked"/>
  15. </mobile:MobilePage.PrimaryMenu>
  16. <mobile:MobilePage.PageContent>
  17. <local:ExistingForms
  18. x:Name="_forms"
  19. Search="_forms_OnSearch"
  20. FormTapped="_forms_OnFormTapped"
  21. Margin="5,5,5,0"
  22. RefreshRequested="_forms_OnRefreshRequested"/>
  23. </mobile:MobilePage.PageContent>
  24. </mobile:MobilePage>