双向多重绑定验证
我有这样的情况,其中前一个有多重绑定, textbox1 的值取决于 textbox2 和 textbox3 并且绑定有两种方式, 如果负值,所有文本框都对 ex 错误应用相同的验证规则。
不知何故,如果 textbox1 更新了,textbox2 和 textbox3 验证将会触发。 但是当 textbox2 或 textbox3 更新时,textbox1 验证将不会触发。
- 我尝试设置 ValidatesOnTargetUpdated="True" 但没有任何反应。
有什么建议吗?
I have this case where there is a multibinding for ex,
textbox1 which value depend on textbox2 and textbox3 and the binding is two way,
all textbox applied the same validation rule for ex error if minus.
somehow if textbox1 got updated the textbox2 and textbox3 validation will fire.
but when either textbox2 or textbox3 updated, textbox1 validation will not fire.
- I have tried set the ValidatesOnTargetUpdated="True" but nothing happened.
Any advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
多重绑定似乎没有观察到 ValidatesOnTargetUpdated
it appears that ValidatesOnTargetUpdated is not observed by Multibinding