[WPF] RadioButton绑定数据

为建立中文知识库加块砖        ——中科大胡不归

0. 前言

终于用上了 RadioButton 了。

学习WPF: 第7个月。

1. View代码

打开
关闭 

2. Converter代码

public class Radio2BoolConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            return value != null && (value.ToString()?.Equals(parameter) ?? false);
        }

        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            return value != null && value.Equals(true) ? parameter : Binding.DoNothing;
        }
    }

在 Convert 中,检查 value 的值是否和 parameter 的值一致,如果一致即为选中项,返回 true。界面上的效果即为选中。

在 ConvertBack 中,判断value的值为true的时候,会直接返回 parameter 的值,否则什么也不做Binding.DoNothing。

3. VM代码

        private int _ledSwitch = 1;

        public int LedSwitch
        {
            get => _ledSwitch;
            set
            {
                _ledSwitch = value;
                RaisePropertyChanged(nameof(LedSwitch));
            }
        }

4. 效果

参考文章:

  1. WPF中RadioButton绑定数据的正确方法
  2. wpf RadioButton按钮绑定数据过程
  3. WPF + MVVM + RadioButton:具有单个属性的句柄绑定

你可能感兴趣的:([WPF] RadioButton绑定数据)