WPF Textblock TargetNullValue not working?

大憨熊 提交于 2019-12-07 03:09:44

问题


I have a wpf textblock as below:

<TextBlock Text="{Binding [someViewModel].SomeVar.SomeSubVar.Name, 
                          TargetNullValue='-'}"/>

At my viewmodel side, I'll have my own logic that in the end, SomeVar.SomeSubVar will be null.

If I want to show a default value for this TextBlock I know I can declare and initiate SomeVar.SomeSubVar and assign default value into SomeVar.SomeSubVar.Name but I would like to use TargetNullValue instead. May I know which part is wrong?


回答1:


You might look at using FallbackValue http://msdn.microsoft.com/en-us/library/system.windows.data.bindingbase.fallbackvalue(v=vs.110).aspx in conjunction with TargetNullValue.

In order for TargetNullValue to work you must be able to evaluate the full path of [someViewModel].SomeVar.SomeSubVar.Name to null. If 'someViewModel', 'SomeVar', or 'SomeSubVar' are null then 'Name' can never be evaluated, and TargetNullValue won't apply.




回答2:


The Binding's TargetNullValue property is displayed in the TextBlock if the [somveViewModel].SomeVar.SomeSubVar.Name property is null. It doesn't cane the value of the [somveViewModel].SomeVar.SomeSubVar.Name property. It effectively sets up an equivalency between null and the TargetNullValue property's value.

See this question for a good explanation.

So my advice is if you want to have a non-null default value, you need to set it in the view model.



来源:https://stackoverflow.com/questions/22315699/wpf-textblock-targetnullvalue-not-working

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!