| 123456789101112131415161718192021222324252627282930313233 |
- <?xml version="1.0" encoding="utf-8" ?>
- <timesheets:SitePage
- xmlns:timesheets="clr-namespace:comal.timesheets"
- xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- x:Class="comal.timesheets.SiteITPModule.JobITPs" Title = "Site ITP Areas">
- <timesheets:SitePage.PageContent>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
-
- <timesheets:MobileGrid
- x:Name="ITPs"
- Grid.Row="0"
- PullToRefresh="true"
- RefreshRequested="ITPs_OnOnRefreshRequested"
- SelectionMode="Single"
- SelectionChanged="ITPs_OnSelectionChanged"
- />
- <Label
- x:Name="countLbl"
- Grid.Row="1"
- HorizontalOptions="Center"
- FontAttributes="Bold"/>
-
- </Grid>
-
- </timesheets:SitePage.PageContent>
- </timesheets:SitePage>
|