using System; using System.Globalization; using System.Windows.Data; namespace LocalizationTool.Converters { /// 布尔取反(用于互斥 RadioButton 的 IsChecked)。 public class InverseBoolConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) => value is bool b ? !b : value; public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) => value is bool b ? !b : value; } }