1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| using System;
| using System.Windows.Data;
|
| namespace UILib.Converter
| {
| public class RadioEnumConverter : IValueConverter
| {
| public static RadioEnumConverter Instance { get; } = new RadioEnumConverter();
| public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
| {
| return value?.Equals(parameter);
| }
|
| public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
| {
| return value?.Equals(true) == true ? parameter : Binding.DoNothing;
| }
| }
| }
|
|