mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
112 lines
3 KiB
XML
112 lines
3 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="TINK.View.MyBikes.MyBikesPage"
|
|
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
|
|
xmlns:sharedGui="clr-namespace:ShareeSharedGuiLib.View"
|
|
xmlns:local_bike="clr-namespace:TINK.View.Bike"
|
|
BackgroundColor="{DynamicResource background-color}"
|
|
Shell.FlyoutBehavior="{Binding FlyoutBehavior}"
|
|
>
|
|
|
|
<Shell.TitleView>
|
|
<Grid ColumnDefinitions="Auto, 1*">
|
|
<Image Style="{StaticResource Image-Navbar}"/>
|
|
<Label Style="{StaticResource Label-Navbar}"
|
|
Text="{x:Static resources:AppResources.MarkingMyBikes}"/>
|
|
</Grid>
|
|
</Shell.TitleView>
|
|
|
|
|
|
<ContentPage.Resources>
|
|
<ResourceDictionary>
|
|
<local_bike:BikeViewCellTemplateSelector x:Key="bikeTemplateSelector"/>
|
|
</ResourceDictionary>
|
|
</ContentPage.Resources>
|
|
|
|
<ContentPage.Content>
|
|
|
|
<!--Grid for Bike(s) view and Running process in same row-->
|
|
<Grid>
|
|
|
|
<!--Bike(s) view-->
|
|
<Grid
|
|
RowDefinitions="1*,Auto"
|
|
RowSpacing="0"
|
|
Grid.Row="0">
|
|
|
|
<StackLayout
|
|
Grid.Row="0"
|
|
Spacing="0"
|
|
Orientation="Vertical">
|
|
|
|
<!--No Network Connection-->
|
|
<sharedGui:NotConnectedToNetView/>
|
|
|
|
<!--Bike(s)-->
|
|
<StackLayout
|
|
Spacing="0"
|
|
IsVisible="{Binding IsBikesListVisible}"
|
|
Orientation="Vertical">
|
|
|
|
<!--Hint for Outdated Data.-->
|
|
<sharedGui:HintForRefreshingPageView/>
|
|
|
|
<ListView
|
|
x:Name="MyBikesListView"
|
|
SelectionMode="None"
|
|
SelectedItem="{Binding SelectedBike}"
|
|
IsEnabled="{Binding IsIdle}"
|
|
HasUnevenRows="True"
|
|
SeparatorVisibility="None"
|
|
ItemTemplate="{StaticResource bikeTemplateSelector}"
|
|
IsPullToRefreshEnabled="True"
|
|
RefreshCommand="{Binding RefreshCommand}"
|
|
IsRefreshing="{Binding IsRefreshing}"/>
|
|
|
|
</StackLayout>
|
|
|
|
<!--No Bikes-->
|
|
<Label
|
|
Margin="20"
|
|
IsVisible="{Binding IsNoBikesOccupiedVisible}"
|
|
Text="{Binding NoBikesOccupiedText}"/>
|
|
|
|
</StackLayout>
|
|
|
|
<!--Info text-->
|
|
<Label
|
|
Grid.Row="1"
|
|
Text="{Binding StatusInfoText}"
|
|
IsVisible="{Binding Path=IsProcessWithRunningProcessView, Converter={StaticResource InvertedBoolConverter}}"
|
|
FontSize="Small"
|
|
TextColor="DimGray"
|
|
Padding="5"
|
|
HorizontalOptions="CenterAndExpand">
|
|
<Label.Triggers>
|
|
<DataTrigger
|
|
TargetType="Label"
|
|
Binding="{Binding Path=StatusInfoText.Length}" Value="0">
|
|
<Setter Property="HeightRequest" Value="0" />
|
|
</DataTrigger>
|
|
<DataTrigger
|
|
TargetType="Label"
|
|
Binding="{Binding Path=StatusInfoText}" Value="Offline.">
|
|
<Setter Property="HeightRequest" Value="0" />
|
|
</DataTrigger>
|
|
</Label.Triggers>
|
|
</Label>
|
|
|
|
</Grid>
|
|
|
|
<!--While process is running-->
|
|
<sharedGui:RunningProcessView
|
|
Grid.Row="0"
|
|
IsVisible="{Binding IsProcessWithRunningProcessView}"/>
|
|
|
|
</Grid>
|
|
|
|
</ContentPage.Content>
|
|
|
|
</ContentPage>
|