24 lines
762 B
C#
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|