InverseBoolConverter.cs 599 B

123456789101112131415161718
  1. using System;
  2. using System.Globalization;
  3. using System.Windows.Data;
  4. namespace TeamAAS.FlowEditor.Converters
  5. {
  6. /// <summary>
  7. /// bool 取反转换器(用于"只读模式 → 禁用按钮"的 IsEnabled 绑定)。
  8. /// </summary>
  9. public class InverseBoolConverter : IValueConverter
  10. {
  11. public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
  12. => !(value is bool b && b);
  13. public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
  14. => !(value is bool b && b);
  15. }
  16. }