“嵌套”会发生什么?属性绑定为空?

发布于 2024-11-09 03:29:50 字数 112 浏览 0 评论 0原文

示例:

Text="{Binding Path=CurrentPerson.FirstName}"

当 CurrentPerson 为 null 时会发生什么?这是一个例外吗?

Example:

Text="{Binding Path=CurrentPerson.FirstName}"

What happens when CurrentPerson is null? Is this an execption?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瑕疵 2024-11-16 03:29:50

它不会抛出异常,只会在运行时计算表达式时默默地失败。

您可以使用 TargetNullValue 属性提供值:

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

当源为 null 时, ="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.data.bindingbase.targetnullvalue.aspx

另外,当属性路径无效时,您可以使用 FallbackValue:

<TextBlock Text="{Binding Path=BadPath, FallbackValue='Invalid Path'}"/>

It will not throw an exception, it will just fail silently when the expression is evaluated at runtime.

You can use the TargetNullValue property to provide a value when the source is null:

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

http://msdn.microsoft.com/en-us/library/system.windows.data.bindingbase.targetnullvalue.aspx

Also, you can use FallbackValue when the property path is invalid:

<TextBlock Text="{Binding Path=BadPath, FallbackValue='Invalid Path'}"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文