从这里https://msdn.microsoft.com/en-us/library/system.windows.data.bindingbase.targetnullvalue(v=vs.110).aspx

它给出了指定“TargetNullValue”的示例:

<TextBox Width="150"
         Text="{Binding Source={StaticResource object2},
  Path=PropertyB, BindingGroupName=bindingGroup,
  TargetNullValue=please enter a string}" />

我的问题是如何为TargetNullValue指定一个空字符串?

我试过了"TargetNullValue= }"(=和}之间有一个空格,但这不起作用,目标null值为null,而不是空字符串。

谢谢。

最佳答案

您可以在xaml中使用x:Static并在其中定义string.empty。

<TextBox Width="150"
         Text="{Binding Source={StaticResource object2},
  Path=PropertyB, BindingGroupName=bindingGroup,
  TargetNullValue={x:Static system:String.Empty} }" />

您需要根据需要向xaml添加适当的 namespace 。 VS应该为您做到这一点。所需的命名空间为
xmlns:system="clr-namespace:System;assembly=mscorlib"

08-19 01:59