| 123456789101112131415161718192021 |
- <?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.KanbanForms"
- Title="Uncompleted Forms">
-
- <mobile:MobilePage.PrimaryMenu>
- <ImageButton Source="plus" Clicked="AddForm_Clicked" />
- </mobile:MobilePage.PrimaryMenu>
-
- <mobile:MobilePage.PageContent>
-
- <local:ExistingForms x:Name="_forms" Margin="5" FormTapped="_forms_OnFormTapped"/>
-
- </mobile:MobilePage.PageContent>
-
- </mobile:MobilePage>
|