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

20 lines
940 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"
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"
IsVisible="{Binding IsBatteryChargeLevelImageVisible}"
Source="{Binding BatteryChargeLevelImageSourceString}"/>
<!-- Text describing filling level batteries with 1...4 and 6..N bars -->
<Label
x:Name="BarLevelLabel"
Text="{Binding BatteryChargeLevelBarsText}"
IsVisible="{Binding IsBatteryChargeLevelLabelVisible}"/>
</StackLayout>
</ContentView.Content>
</ContentView>