aurora/Aurora/Design/Converters/InverseBoolConverter.cs

24 lines
624 B
C#
Raw Normal View History

using System;
using System.Globalization;
using Xamarin.Forms;
2019-07-05 18:17:09 +00:00
namespace Aurora.Design.Converters
{
public class InverseBoolConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (!(value is bool))
{
throw new InvalidOperationException("The target must be a boolean");
}
return !(bool)value;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return null;
}
}
}