InverseBoolConverter.cs 562 B

12345678910111213141516
  1. using System;
  2. using System.Globalization;
  3. using System.Windows.Data;
  4. namespace LocalizationTool.Converters
  5. {
  6. /// <summary>布尔取反(用于互斥 RadioButton 的 IsChecked)。</summary>
  7. public class InverseBoolConverter : IValueConverter
  8. {
  9. public object Convert(object value, Type targetType, object parameter, CultureInfo culture) =>
  10. value is bool b ? !b : value;
  11. public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) =>
  12. value is bool b ? !b : value;
  13. }
  14. }