Version 3.0.371

This commit is contained in:
Anja 2023-08-31 12:31:38 +02:00
parent bdb2dec1c1
commit 6d22dbf40b
145 changed files with 2289 additions and 764 deletions

View file

@ -1,8 +1,3 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ShareeSharedGuiLib.ViewModel;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
@ -24,7 +19,7 @@ namespace ShareeSharedGuiLib.View
}
/// <summary>
/// Create bindable property to to allow "Maximum"- proptery to act as a valid target for data binding.
/// Create bindable property to allow "Maximum"- property to act as a valid target for data binding.
/// </summary>
public static readonly BindableProperty MaximumProperty = BindableProperty.Create(
"Maximum",
@ -34,7 +29,7 @@ namespace ShareeSharedGuiLib.View
propertyChanged: OnMaximumChanged);
/// <summary>
/// Holds the count of bars wich represent charing level full.
/// Holds the count of bars which represent charing level full.
/// </summary>
public string Maximum
{
@ -58,7 +53,7 @@ namespace ShareeSharedGuiLib.View
/// <summary>
/// Create bindable property to to allow "Current"- proptery to act as a valid target for data binding.
/// Create bindable property to allow "Current"- property to act as a valid target for data binding.
/// </summary>
public static readonly BindableProperty CurrentProperty = BindableProperty.Create(
"Current",
@ -68,7 +63,7 @@ namespace ShareeSharedGuiLib.View
propertyChanged: OnCurrentChanged);
/// <summary>
/// Holds the count of bars wich represent the current charing level.
/// Holds the count of bars which represent the current charing level.
/// </summary>
public string Current
{
@ -91,4 +86,4 @@ namespace ShareeSharedGuiLib.View
public void SetCurrent(int? current) => _LocalViewModel.Current = current;
}
}
}