ValidationRule - 验证属性更新
问候, 如何验证 TextBlock 中的值是否正常? 我有一个 TextBox,其中绑定了“Amount”属性,还有一个 TextBlock,它使用多重绑定:Price 属性和 Amount 属性。我想做这样的事情: 如果更改金额,我想验证价格是否大于 xx(这是常数)。 提前致谢
Greetings,
how can I validate if value in TextBlock is ok?
I have a TextBox where I bind "Amount" property and a TextBlock which uses Multibinding: Price Property and Amount property. I would like to do something like that:
In case of changing Amount i would like to validate if the price is greater than xx (which is the constant).
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您已经创建了用于绑定验证的验证规则类(从验证规则派生)。
以下是有关如何在 WPF 中实现绑定验证的一些示例
示例 1
示例 2
You have create validation rule class(derived from validation rule) for binding validation.
Here is some sample to how to implement binding validation in WPF
Sample 1
Sample 2
我知道如何创建验证规则。
我只想在其他控件 (TextBox) 中的值发生更改时在 TextBlock 中触发验证。
i know how to create validation rules.
I just want to fire validation in my TextBlock when the value in other control (TextBox) changes.
XAML 中有一个简单的标志来设置何时进行验证。
<'local:ValidationRules ValidatesOnTargetUpdated="True" /> />
希望有帮助。
There is a simple flag in XAML that sets when to validate.
<'local:ValidationRules ValidatesOnTargetUpdated="True" />
Hope that helps.