Bool2Not.cs 648 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Windows.Data;
  3. namespace CyberX8_Themes.Converters
  4. {
  5. public class Bool2Not : IValueConverter
  6. {
  7. public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
  8. {
  9. if (!(value is bool))
  10. return false;
  11. return !(bool)value;
  12. }
  13. public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
  14. {
  15. if (!(value is bool))
  16. return false;
  17. return !(bool)value;
  18. }
  19. }
  20. }