sharee.bike-App/ShareeSharedGuiLib/View/BarLevelInputView.xaml
Anja Müller-Meißner 573fe77e12 Version 3.0.337
2022-08-30 15:42:25 +02:00

21 lines
959 B
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:ShareeSharedGuiLib.View"
xmlns:resources="clr-namespace:TINK.MultilingualResources;assembly=TINKLib"
x:Class="ShareeSharedGuiLib.View.BarLevelInputView">
<ContentView.Content>
<StackLayout>
<Label
Text="{x:Static resources:AppResources.MarkingDriveBatteryTitel}"/>
<sharedGui:BarLevelView
x:Name="BarLevelElement"
Current="{Binding CurrentText, Mode=TwoWay}"
Maximum="{Binding MaximumText}"/>
<Stepper
x:Name="BarLevelStepper"
Value ="{Binding CurrentText, Mode=TwoWay}"
Maximum="{Binding MaximumText}"/>
</StackLayout>
</ContentView.Content>
</ContentView>