KanbanForms.xaml 712 B

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