| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
- x:Class="PRS.Mobile.LiveMapsMenu">
- <ContentView.Content>
-
- <Grid RowSpacing="5">
-
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
-
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
-
- <mobile:MobileGrid
- x:Name="_grid"
- Grid.Row="0"
- Grid.ColumnSpan="2"
- CanSearch="True"
- PullToRefresh="False"
- SelectionMode="None"
- />
-
- <mobile:MobileButton
- x:Name="_clearall"
- Grid.Row="1"
- Grid.Column="0"
- Text="Clear All"
- Clicked="_clearall_Clicked"/>
-
- <mobile:MobileButton
- x:Name="_selectall"
- Grid.Row="1"
- Grid.Column="1"
- Text="Select All"
- Clicked="_selectall_Clicked"/>
-
- </Grid>
- </ContentView.Content>
- </ContentView>
|