mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
<?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:sharedGui="clr-namespace:SharedGui.View"
|
|
xmlns:resources="clr-namespace:ShareeBike.MultilingualResources;assembly=SharedBusinessLogic"
|
|
x:Class="SharedGui.View.BarLevelInputView">
|
|
<ContentView.Content>
|
|
<StackLayout>
|
|
<Label
|
|
Text="{x:Static resources:AppResources.MarkingDriveBatteryTitel}"
|
|
TextType="Html"
|
|
HorizontalOptions="CenterAndExpand"/>
|
|
<sharedGui:BarLevelView
|
|
x:Name="BarLevelElement"
|
|
HorizontalOptions="CenterAndExpand"
|
|
Current="{Binding CurrentText, Mode=TwoWay}"
|
|
Maximum="{Binding MaximumText}"/>
|
|
<Stepper
|
|
x:Name="BarLevelStepper"
|
|
HorizontalOptions="CenterAndExpand"
|
|
Value ="{Binding CurrentText, Mode=TwoWay}"
|
|
Maximum="{Binding MaximumText}"/>
|
|
</StackLayout>
|
|
</ContentView.Content>
|
|
</ContentView>
|