SelectionView.xaml 537 B

123456789101112131415
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentView xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:local="clr-namespace:PRS.Mobile"
  5. x:Class="PRS.Mobile.SelectionView">
  6. <ContentView.Content>
  7. <local:MobileGrid
  8. x:Name="Items"
  9. PullToRefresh="True"
  10. RefreshRequested="Items_OnRefreshRequested"
  11. SelectionChanged="Items_OnSelectionChanged"/>
  12. </ContentView.Content>
  13. </ContentView>