ConveterParameter为整数

时间:2019-03-11 13:30:49

标签: c# wpf xaml ivalueconverter

我有一些单选按钮,每个按钮代表一个数字(整数)值。它们绑定到视图模型中的数字属性,并且使用转换器将整数值转换为布尔值。问题是,Converter参数似乎被解析为字符串,因此即使我必须使用相同的数字,我的转换器也返回false。

我最好的选择是指定ConverterParameter是一个整数,但是我该怎么做?

RadioButton XAML:

<RadioButton Content="1" IsChecked="{Binding SelectedValue, Converter={StaticResource MyConverter}, ConverterParameter=1}" />

视图模型中的绑定属性:

// The SetProperty method handles INotifyProperyChanged
private int _selectedValue;
public int SelectedValue
{
    get { return _selectedValue; }
    set { SetProperty(ref _selectedValue, value); }
}

我的转换器:

public class MyConverter: IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        return value.Equals(parameter);
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        return ((bool)value) ? parameter : Binding.DoNothing;
    }
}

1 个答案:

答案 0 :(得分:1)

您应该将“参数”和“值”转换为合适的格式,例如首先要使用double / integer!像这样

    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        return System.Convert.ToInt32(value) == System.Convert.ToInt32(parameter);
    }