2024-08-21 16:50:14 +08:00

24 lines
762 B
C#

using System;
using System.Windows.Data;
namespace Yunda.SOMS.DataMonitoringServer.Viewport.Domain.Converters
{
[ValueConversion(typeof(bool), typeof(bool))]
public class InverseBoolValueConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
if (targetType != typeof(bool))
throw new InvalidOperationException("The target must be a boolean");
return !(bool)value;
}
public object ConvertBack(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
throw new NotSupportedException();
}
}
}