WPF 值转换器在自定义事件中触发重新转换?
有没有办法强制 wpf 在特定事件上再次运行值转换器?
Is there any way to force wpf to run the value converter again on a specific event?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法强制 wpf 在特定事件上再次运行值转换器?
Is there any way to force wpf to run the value converter again on a specific event?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您可以通过调用 强制 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
.