2022-09-20 13:51:55 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
2021-11-07 19:42:59 +01:00
|
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
2022-09-20 13:51:55 +02:00
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
x:Class="TINK.View.FindBike.FindBikePage"
|
|
|
|
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
|
|
|
|
xmlns:local_bike="clr-namespace:TINK.View.Bike"
|
|
|
|
xmlns:sharedGui="clr-namespace:ShareeSharedGuiLib.View">
|
|
|
|
|
|
|
|
<Shell.TitleView>
|
|
|
|
<Grid ColumnDefinitions="Auto, 1*">
|
|
|
|
<Label Style="{StaticResource Label-Navbar}"
|
|
|
|
Text="{x:Static resources:AppResources.MarkingFindBike}"/>
|
|
|
|
</Grid>
|
|
|
|
</Shell.TitleView>
|
|
|
|
|
|
|
|
<ContentPage.Resources>
|
|
|
|
<ResourceDictionary>
|
|
|
|
<local_bike:BikeViewCellTemplateSelector x:Key="bikeTemplateSelector"/>
|
|
|
|
</ResourceDictionary>
|
|
|
|
</ContentPage.Resources>
|
|
|
|
|
|
|
|
<ContentPage.Content>
|
|
|
|
|
|
|
|
<Frame>
|
|
|
|
|
|
|
|
<!--Grid for Bike(s) view and Running process in same row-->
|
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
|
|
<!--Search bike-->
|
|
|
|
<StackLayout Grid.Row="0">
|
|
|
|
<Entry
|
|
|
|
Placeholder="{x:Static resources:AppResources.PlaceholderFindBike}"
|
|
|
|
IsVisible="{Binding IsSelectBikeVisible}"
|
|
|
|
MaxLength="10"
|
|
|
|
CursorPosition="0"
|
|
|
|
Text="{Binding BikeIdUserInput}"/>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
Text="{x:Static resources:AppResources.MarkingFindBike}"
|
|
|
|
IsEnabled="{Binding IsSelectBikeEnabled}"
|
|
|
|
IsVisible="{Binding IsSelectBikeVisible}"
|
|
|
|
Command="{Binding OnSelectBikeRequest}"/>
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
x:Name="FindBikeListView"
|
|
|
|
SelectionMode="None"
|
|
|
|
SelectedItem="{Binding SelectedBike}"
|
|
|
|
IsEnabled="{Binding IsIdle}"
|
|
|
|
IsVisible="{Binding IsBikesListVisible}"
|
|
|
|
HasUnevenRows="True"
|
|
|
|
ItemTemplate="{StaticResource bikeTemplateSelector}"/>
|
|
|
|
|
|
|
|
</StackLayout>
|
|
|
|
|
|
|
|
<!--While process is running-->
|
|
|
|
<sharedGui:RunningProcessView
|
|
|
|
Grid.Row="0"
|
|
|
|
IsVisible="{Binding IsRunning}"/>
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
</Frame>
|
|
|
|
</ContentPage.Content>
|
|
|
|
</ContentPage>
|