23 lines
587 B
C#
23 lines
587 B
C#
|
|
using System;
|
|||
|
|
using System.Globalization;
|
|||
|
|
using System.Windows.Data;
|
|||
|
|
|
|||
|
|
namespace ASTM_D7896_Tester.Converters;
|
|||
|
|
|
|||
|
|
[ValueConversion(typeof(bool), typeof(bool))]
|
|||
|
|
public class InverseBooleanConverter : IValueConverter
|
|||
|
|
{
|
|||
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
|||
|
|
{
|
|||
|
|
if (value is bool b)
|
|||
|
|
return !b;
|
|||
|
|
return false;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
|
|||
|
|
{
|
|||
|
|
if (value is bool b)
|
|||
|
|
return !b;
|
|||
|
|
return false;
|
|||
|
|
}
|
|||
|
|
}
|