ReverseBoolConverter.cs 537 B

123456789101112131415161718192021
  1. using System;
  2. using System.Windows.Data;
  3. using System.Globalization;
  4. namespace Compdfkit_Tools.Common
  5. {
  6. [ValueConversion(typeof(bool), typeof(bool))]
  7. public class ReverseBoolConverter:IValueConverter
  8. {
  9. public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
  10. {
  11. return (bool)value != true;
  12. }
  13. public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
  14. {
  15. return null;
  16. }
  17. }
  18. }