gpt4 book ai didi

C#/WPF 文本框错误 : "Value ' ' cannot be converted", TargetNull 不工作

转载 作者:行者123 更新时间:2023-11-30 13:56:20 25 4
gpt4 key购买 nike

我有一个 Listview 和一个绑定(bind)到所选项目的 Textbox。当用户删除文本框中的值( double 值)时,出现以下错误:Value '' cannot be converted。所以我有 TargetNullValue='',像这样:

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

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

最佳答案

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

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


替代方法是使用转换器,但假设 0 和 empty 是同一件事:

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());
}
}

关于C#/WPF 文本框错误 : "Value ' ' cannot be converted", TargetNull 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28931250/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com