using System.Windows.Data; namespace WPFBeginner.Converters { [ValueConversion(typeof(bool), typeof(bool))] public class InverseBoolConverter : BaseConverter, IValueConverter { public InverseBoolConverter() { } public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { return !(bool)value; } public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { return !(bool)value; } } }