2019-05-17 22:21:02 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Globalization;
|
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
|
2019-07-05 18:17:09 +00:00
|
|
|
|
namespace Aurora.Design.Converters
|
2019-05-17 22:21:02 +00:00
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|