wabbajack/Wabbajack/Converters/InverseBooleanConverter.cs

25 lines
799 B
C#
Raw Normal View History

2019-11-10 01:29:00 +00:00
using System;
using System.Globalization;
using System.Windows.Data;
namespace Wabbajack
{
[ValueConversion(typeof(bool), typeof(bool))]
public class InverseBooleanConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (targetType != typeof(bool))
throw new InvalidOperationException($"The target must be of type bool");
return !((bool)value);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
if (targetType != typeof(bool))
throw new InvalidOperationException($"The target must be of type bool");
return !((bool)value);
}
}
}