| 1234567891011121314151617181920212223242526272829 |
- <?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:ui="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
- xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
- x:Class="PRS.Mobile.SiteITPForms"
- Title="{Binding Description}"
- x:DataType="local:JobITPShell">
-
- <mobile:MobilePage.Resources>
- <local:ExistingFormBackgroundColorConverter x:Key="ExistingFormColorConverter"/>
- <local:ExistingFormStatusConverter x:Key="ExistingFormStatusConverter"/>
- </mobile:MobilePage.Resources>
-
- <mobile:MobilePage.PrimaryMenu>
- <ImageButton x:Name="Add" Source="plus" Clicked="Add_Clicked"/>
- </mobile:MobilePage.PrimaryMenu>
-
- <mobile:MobilePage.PageContent>
-
- <local:ExistingForms
- x:Name="_forms"
- Search="_forms_OnSearch"
- FormTapped="_forms_OnFormTapped"
- Margin="5,5,5,0"
- RefreshRequested="_forms_OnRefreshRequested"/>
-
- </mobile:MobilePage.PageContent>
- </mobile:MobilePage>
|