SelectionPage.xaml 680 B

12345678910111213141516
  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:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
  5. x:Class="PRS.Mobile.SelectionPage">
  6. <mobile:MobilePage.PageContent>
  7. <local:SelectionView
  8. x:Name="_selection"
  9. Configure="_selection_OnConfigure"
  10. Refresh="_selection_OnRefresh"
  11. SelectionChanged="_selection_OnSelectionChanged"
  12. Margin="5"/>
  13. </mobile:MobilePage.PageContent>
  14. </mobile:MobilePage>