16 lines
451 B
C#
16 lines
451 B
C#
using System;
|
|
using System.Globalization;
|
|
using System.Windows.Data;
|
|
|
|
namespace Hermes.Converter {
|
|
class NegateBoolean : IValueConverter {
|
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) {
|
|
return !(bool) value;
|
|
}
|
|
|
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) {
|
|
return !(bool) value;
|
|
}
|
|
}
|
|
}
|