ValidationRule - 验证属性更新

发布于 2024-08-07 21:42:00 字数 150 浏览 7 评论 0原文

问候, 如何验证 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 技术交流群。

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

发布评论

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

评论(3

谁许谁一生繁华 2024-08-14 21:42:00

您已经创建了用于绑定验证的验证规则类(从验证规则派生)。
以下是有关如何在 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

蝶舞 2024-08-14 21:42:00

我知道如何创建验证规则。
我只想在其他控件 (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.

你与清晨阳光 2024-08-14 21:42:00

XAML 中有一个简单的标志来设置何时进行验证。

<'local:ValidationRules ValidatesOnTargetUpdated="True" /> />

希望有帮助。

There is a simple flag in XAML that sets when to validate.

<'local:ValidationRules ValidatesOnTargetUpdated="True" />

Hope that helps.

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