sharee.bike-App/ShareeSharedGuiLib/View/BarLevelInputView.xaml

24 lines
1 KiB
Plaintext
Raw Normal View History

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"
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"
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>