12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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"
- xmlns:buttons="clr-namespace:Syncfusion.XForms.Buttons;assembly=Syncfusion.Buttons.XForms"
- xmlns:generic="clr-namespace:System.Collections.Generic;assembly=mscorlib"
- x:Class="comal.timesheets.SiteTasks">
- <timesheets:SitePage.PageContent>
-
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
-
- <timesheets:MobileGrid
- x:Name="Tasks"
- Grid.Row="0"
- SelectionMode="Multiple"
- PullToRefresh="True"
- RefreshRequested="Tasks_OnRefreshRequested"
- SelectionChanged="Tasks_OnSelectionChanged"
- />
-
- <buttons:SfSegmentedControl
- x:Name="TaskType"
- Margin="10,0"
- CornerRadius="15"
- SegmentHeight="50"
- BorderColor="Transparent"
- SelectedIndex="1"
- Color="#048EAC"
- FontSize="22"
- DisplayMode="Text"
- VisibleSegmentsCount="3"
- FontColor="#FFFFFF"
- SelectionTextColor="#048EAC"
- VerticalOptions="Center"
- HorizontalOptions="Center"
- SelectionChanged="TaskType_OnSelectionChanged">
- <generic:List x:TypeArguments="x:String">
- <x:String>New</x:String>
- <x:String>Current</x:String>
- <x:String>Waiting</x:String>
- <x:String>Completed</x:String>
- </generic:List>
- </buttons:SfSegmentedControl>
-
- </Grid>
-
- </timesheets:SitePage.PageContent>
- </timesheets:SitePage>
|