mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-16 15:16:34 +01:00
60 lines
2.1 KiB
Text
60 lines
2.1 KiB
Text
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||
|
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
|
||
|
x:Class="TINK.View.Help.HelpPage">
|
||
|
<Shell.TitleView>
|
||
|
<Grid ColumnDefinitions="Auto, 1*">
|
||
|
<Label Style="{StaticResource Label-Navbar}"
|
||
|
Text="{x:Static resources:AppResources.MarkingHelp}"/>
|
||
|
</Grid>
|
||
|
</Shell.TitleView>
|
||
|
<!--Pages can be added as references or inline-->
|
||
|
<ContentPage
|
||
|
IsEnabled="{Binding IsIdle}"
|
||
|
Title="{x:Static resources:AppResources.MarkingTabManual}">
|
||
|
<ContentPage.Content>
|
||
|
<Grid>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="*"/>
|
||
|
</Grid.RowDefinitions>
|
||
|
<WebView
|
||
|
x:Name="ManualWebView"
|
||
|
HeightRequest="1000"
|
||
|
WidthRequest="1000"
|
||
|
Source="{Binding ManualHtml}"/>
|
||
|
<ActivityIndicator Grid.Row="0"
|
||
|
IsRunning="{Binding IsIdle, Converter={StaticResource InvertedBoolConverter}}"
|
||
|
IsVisible="{Binding IsIdle, Converter={StaticResource InvertedBoolConverter}}"
|
||
|
Scale="2"
|
||
|
VerticalOptions="CenterAndExpand"
|
||
|
HorizontalOptions="CenterAndExpand"
|
||
|
Color="{x:DynamicResource primary-back-title-color}"/>
|
||
|
</Grid>
|
||
|
</ContentPage.Content>
|
||
|
</ContentPage>
|
||
|
<ContentPage
|
||
|
IsEnabled="{Binding IsIdle}"
|
||
|
Title="{x:Static resources:AppResources.MarkingTabTariffs}">
|
||
|
<ContentPage.Content>
|
||
|
<Grid>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="*"/>
|
||
|
</Grid.RowDefinitions>
|
||
|
<WebView
|
||
|
x:Name="TariffsWebView"
|
||
|
HeightRequest="1000"
|
||
|
WidthRequest="1000"
|
||
|
Source="{Binding TariffsHtml}"/>
|
||
|
<ActivityIndicator Grid.Row="0"
|
||
|
IsRunning="{Binding IsIdle, Converter={StaticResource InvertedBoolConverter}}"
|
||
|
IsVisible="{Binding IsIdle, Converter={StaticResource InvertedBoolConverter}}"
|
||
|
Scale="2"
|
||
|
VerticalOptions="CenterAndExpand"
|
||
|
HorizontalOptions="CenterAndExpand"
|
||
|
Color="{x:DynamicResource primary-back-title-color}"/>
|
||
|
</Grid>
|
||
|
</ContentPage.Content>
|
||
|
</ContentPage>
|
||
|
</TabbedPage>
|