| 12345678910111213141516 |
- using System;
- using System.Globalization;
- using System.Windows.Data;
- namespace LocalizationTool.Converters
- {
- /// <summary>布尔取反(用于互斥 RadioButton 的 IsChecked)。</summary>
- 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;
- }
- }
|