sharee.bike-App/SharedBusinessLogic/View/BoolInverterConverter.cs

20 lines
593 B
C#
Raw Normal View History

using System;
using System.Globalization;
using Xamarin.Forms;
2024-04-09 12:53:23 +02:00
namespace ShareeBike.View
{
2022-09-06 16:08:19 +02:00
/// <summary> Inverts a bool.</summary>
public class BoolInverterConverter : IValueConverter
{
/// <summary> Inverts a bool.</summary>
/// <param name="value">Bool to invert.</param>
/// <returns>Inverted bool.</returns>
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
=> value is bool flag && !flag;
2022-09-06 16:08:19 +02:00
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
=> value is bool flag && !flag;
}
}