mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
21 lines
No EOL
959 B
XML
21 lines
No EOL
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> |