ListSelectionPage.xaml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <timesheets:BasePage xmlns:timesheets="clr-namespace:comal.timesheets" xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="comal.timesheets.ListSelectionPage">
  5. <timesheets:BasePage.PageContent>
  6. <Grid>
  7. <Grid.RowDefinitions>
  8. <RowDefinition Height="auto"/>
  9. <RowDefinition Height="auto"/>
  10. <RowDefinition Height="*"/>
  11. </Grid.RowDefinitions>
  12. <timesheets:FilterOptionsControl Grid.Row="0" IsVisible="false" x:Name="filterOptionsControl"/>
  13. <Entry Grid.Row="1" x:Name="searchEnt" TextChanged="SearchEnt_Changed" Placeholder="Search"/>
  14. <ListView Grid.Row="2" HasUnevenRows="True"
  15. x:Name="listView">
  16. <ListView.ItemTemplate>
  17. <DataTemplate>
  18. <ViewCell Tapped="Item_Tapped">
  19. <Frame HasShadow="False" BorderColor="#15C7C1" CornerRadius="5" Padding="3" Margin="1">
  20. <Grid>
  21. <Grid.RowDefinitions>
  22. <RowDefinition Height="auto"/>
  23. <RowDefinition Height="{Binding ExtraRowHeight}"/>
  24. </Grid.RowDefinitions>
  25. <Label Grid.Row="0"
  26. Text="{Binding Value}" HorizontalOptions="Center" LineBreakMode="CharacterWrap" Margin="5"
  27. HorizontalTextAlignment="Center"
  28. VerticalOptions="Center" FontSize="Medium"/>
  29. <Image Grid.Row="1"
  30. Source="{Binding ImageSource}" HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand"/>
  31. </Grid>
  32. </Frame>
  33. </ViewCell>
  34. </DataTemplate>
  35. </ListView.ItemTemplate>
  36. </ListView>
  37. </Grid>
  38. </timesheets:BasePage.PageContent>
  39. </timesheets:BasePage>