C#/ WPF文本框错误:“值''无法转换”,TargetNull无法正常工作

时间:2015-03-08 20:02:36

标签: c# wpf mvvm targetnullvalue

我有ListviewTextbox绑定到所选项目。 当用户删除文本框中的值(这是一个双精度值)时,我收到以下错误:Value '' cannot be converted。所以我有TargetNullValue='',就像这样:

<TextBox x:Name="textBoxVoltage" Text="{Binding Voltage, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, TargetNullValue=''}" />

但我仍然得到错误......我做错了什么?感谢。

1 个答案:

答案 0 :(得分:8)

问题是您的Voltage类型为double,而''无法转换为双倍。

您可以将Voltage类型更改为double?,这样您就可以执行此操作。


替代方案是使用转换器,但假设0和空是相同的事情:

public class EmptyDoubleConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        if (value == null || (double)value == default(double))
            return "";

        return value.ToString();
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        if (String.IsNullOrEmpty(value as string))
            return default(double);

        return double.Parse(value.ToString());
    }
}