原因不明,
解决方案:添加try catch就可以
object IValueConverter.Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
string currentValue= "";
try
{
}
catch (Exception ex)
{
}
return currentValue;
}
