| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?xml version="1.0" encoding="utf-8"?>
- <ContentView
- xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- xmlns:ui="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
- xmlns:timesheets="clr-namespace:comal.timesheets"
- x:Class="comal.timesheets.MobileList"
- BackgroundColor="Transparent">
-
- <ContentView.BindingContext>
- <timesheets:MobileListViewModel x:Name="_viewmodel"/>
- </ContentView.BindingContext>
-
- <ContentView.Content>
- <RefreshView Command="{Binding RefreshCommand}" IsRefreshing="{Binding IsRefreshing}" BackgroundColor="Transparent">
- <CollectionView
- BackgroundColor="Transparent"
- x:Name="_list"
- ItemsSource="{Binding ItemsSource}"
- SelectionMode="Single"
- ItemTemplate="{Binding ItemTemplate}"
- SelectionChanged="_list_OnSelectionChanged"
- Margin="5,2.5,5,2.5">
-
- <CollectionView.ItemsLayout>
- <LinearItemsLayout Orientation="Vertical" ItemSpacing="5" />
- </CollectionView.ItemsLayout>
-
- <!-- <CollectionView.GestureRecognizers> -->
- <!-- <TapGestureRecognizer Tapped="Cell_OnTapped"/> -->
- <!-- </CollectionView.GestureRecognizers> -->
-
- </CollectionView>
- </RefreshView>
- </ContentView.Content>
- </ContentView>
|