WPF 值转换器在自定义事件中触发重新转换?

发布于 2024-08-25 20:34:04 字数 34 浏览 7 评论 0原文

有没有办法强制 wpf 在特定事件上再次运行值转换器?

Is there any way to force wpf to run the value converter again on a specific event?

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

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

发布评论

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

评论(1

一身仙ぐ女味 2024-09-01 20:34:04

您可以通过调用 强制 WPF 更新绑定BindingExpression.UpdateTarget(对于某些绑定,BindingExpression.UpdateSource)。如果绑定涉及转换器,则转换器将作为该更新的一部分运行。

要获取绑定属性的 BindingExpression,请调用 BindingOperations.GetBindingExpression

You can force WPF to update a binding by calling BindingExpression.UpdateTarget (and, for certain bindings, BindingExpression.UpdateSource). If the binding involves a converter, then the converter will run as part of that update.

To get the BindingExpression for a bound property, call BindingOperations.GetBindingExpression.

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