JobITPs.xaml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <timesheets:SitePage
  3. xmlns:timesheets="clr-namespace:comal.timesheets"
  4. xmlns="http://xamarin.com/schemas/2014/forms"
  5. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  6. x:Class="comal.timesheets.SiteITPModule.JobITPs" Title = "Site ITP Areas">
  7. <timesheets:SitePage.PageContent>
  8. <Grid>
  9. <Grid.RowDefinitions>
  10. <RowDefinition Height="*"/>
  11. <RowDefinition Height="Auto"/>
  12. </Grid.RowDefinitions>
  13. <timesheets:MobileGrid
  14. x:Name="ITPs"
  15. Grid.Row="0"
  16. PullToRefresh="true"
  17. RefreshRequested="ITPs_OnOnRefreshRequested"
  18. SelectionMode="Single"
  19. SelectionChanged="ITPs_OnSelectionChanged"
  20. />
  21. <Label
  22. x:Name="countLbl"
  23. Grid.Row="1"
  24. HorizontalOptions="Center"
  25. FontAttributes="Bold"/>
  26. </Grid>
  27. </timesheets:SitePage.PageContent>
  28. </timesheets:SitePage>