| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?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:local="clr-namespace:PRS.Mobile"
- xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
- x:Class="PRS.Mobile.SelectionView">
-
- <ContentView.Content>
- <Grid Grid.RowSpacing="0">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="*" />
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
-
- <mobile:MobileButtonStrip
- x:Name="Filters"
- Grid.Row="0"
- HeightRequest="30"
- CornerRadius="15"
- Margin="0,0,0,5"
- Background="Red"
- SelectionChanged="Filters_OnSelectionChanged"/>
-
- <mobile:MobileGrid
- x:Name="Items"
- Grid.Row="1"
- PullToRefresh="True"
- RefreshRequested="Items_OnRefreshRequested"
- SelectionChanged="Items_OnSelectionChanged"
- ShowRecordCount="True"/>
-
- <Grid
- x:Name="Buttons"
- Grid.Row="2"
- ColumnSpacing="5"
- Margin="0,5,0,0"
- IsVisible="False"/>
- </Grid>
- </ContentView.Content>
-
- </ContentView>
|