2022-12-07 16:54:52 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-08-30 15:42:25 +02:00
|
|
|
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
2024-04-09 12:53:23 +02:00
|
|
|
xmlns:sharedGui="clr-namespace:SharedGui.View"
|
|
|
|
xmlns:resources="clr-namespace:ShareeBike.MultilingualResources;assembly=SharedBusinessLogic"
|
|
|
|
x:Class="SharedGui.View.BarLevelInputView">
|
2022-08-30 15:42:25 +02:00
|
|
|
<ContentView.Content>
|
|
|
|
<StackLayout>
|
|
|
|
<Label
|
2023-08-31 12:20:06 +02:00
|
|
|
Text="{x:Static resources:AppResources.MarkingDriveBatteryTitel}"
|
|
|
|
TextType="Html"
|
|
|
|
HorizontalOptions="CenterAndExpand"/>
|
2022-08-30 15:42:25 +02:00
|
|
|
<sharedGui:BarLevelView
|
|
|
|
x:Name="BarLevelElement"
|
2022-12-07 16:54:52 +01:00
|
|
|
HorizontalOptions="CenterAndExpand"
|
2022-08-30 15:42:25 +02:00
|
|
|
Current="{Binding CurrentText, Mode=TwoWay}"
|
|
|
|
Maximum="{Binding MaximumText}"/>
|
|
|
|
<Stepper
|
|
|
|
x:Name="BarLevelStepper"
|
2022-12-07 16:54:52 +01:00
|
|
|
HorizontalOptions="CenterAndExpand"
|
2022-08-30 15:42:25 +02:00
|
|
|
Value ="{Binding CurrentText, Mode=TwoWay}"
|
|
|
|
Maximum="{Binding MaximumText}"/>
|
|
|
|
</StackLayout>
|
|
|
|
</ContentView.Content>
|
2022-12-07 16:54:52 +01:00
|
|
|
</ContentView>
|