sharee.bike-App/ShareeSharedGuiLib/View/BarLevelView.xaml
2022-12-07 16:54:52 +01:00

25 lines
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"
x:Class="ShareeSharedGuiLib.View.BarLevelView">
<ContentView.Content>
<StackLayout>
<!-- Nice battery images symbolizing filling level for batteries with 5 bars -->
<Image
x:Name="BarLevelImage"
WidthRequest="50"
HeightRequest="30"
Aspect="AspectFit"
HorizontalOptions="CenterAndExpand"
IsVisible="{Binding IsBatteryChargeLevelImageVisible}"
Source="{Binding BatteryChargeLevelImageSourceString}"/>
<!-- Text describing filling level batteries with 1...4 and 6..N bars -->
<Label
x:Name="BarLevelLabel"
HorizontalOptions="CenterAndExpand"
Text="{Binding BatteryChargeLevelBarsText}"
IsVisible="{Binding IsBatteryChargeLevelLabelVisible}"/>
</StackLayout>
</ContentView.Content>
</ContentView>