mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-14 07:41:53 +01:00
20 lines
477 B
C#
20 lines
477 B
C#
using System;
|
|
using System.Globalization;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Borepin.Converter
|
|
{
|
|
public class InvertBoolConverter : IValueConverter
|
|
{
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
return !(bool)value;
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|
{
|
|
return !(bool)value;
|
|
}
|
|
}
|
|
}
|