SelectionView.xaml 559 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:timesheets="clr-namespace:comal.timesheets"
  5. x:Class="comal.timesheets.SelectionView">
  6. <ContentView.Content>
  7. <timesheets:MobileGrid
  8. x:Name="Items"
  9. PullToRefresh="True"
  10. RefreshRequested="Items_OnRefreshRequested"
  11. SelectionChanged="Items_OnSelectionChanged"/>
  12. </ContentView.Content>
  13. </ContentView>