它给出了一个指定'TargetNullValue'的例子:
<TextBox Width="150"
Text="{Binding Source={StaticResource object2},
Path=PropertyB, BindingGroupName=bindingGroup,
TargetNullValue=please enter a string}" />
我的问题是如何为TargetNullValue指定一个空字符串?
我试过"TargetNullValue= }"
(=和}之间有一个空格,但这不起作用,目标空值为空,而不是空字符串。
谢谢。
答案 0 :(得分:13)
您可以在xaml中使用x:Static
并在那里定义string.empty。
<TextBox Width="150"
Text="{Binding Source={StaticResource object2},
Path=PropertyB, BindingGroupName=bindingGroup,
TargetNullValue={x:Static system:String.Empty} }" />
您需要根据需要向xaml添加适当的命名空间。 VS应该为你做这件事。所需的命名空间是
xmlns:system="clr-namespace:System;assembly=mscorlib"
答案 1 :(得分:11)
我不知道为什么删除使用''
的答案,但它对我来说很好:
<TextBox Text="{Binding NumberOfCats, TargetNullValue=''}" />