NumericUpDown ctrl 未检测到验证错误/异常

发布于 2024-10-14 20:11:44 字数 102 浏览 9 评论 0原文

任何人都可以确认或否认 Silverlight 的 NumericUpDown 支持 NotifyOnValidationError 和/或 ValidatesOnExceptions 吗?

Can anyone confirm or deny that Silverlight's NumericUpDown supports the NotifyOnValidationError and/or ValidatesOnExceptions?

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

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

发布评论

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

评论(1

极度宠爱 2024-10-21 20:11:44

它确实如此,也并非如此。

确实如此,因为它派生自Control,这是绑定验证机制与 UI 代码相遇的地方。它具有 ValidInvalidFocusedInvalidUnfocused 的常见视觉状态,并且通过设置绑定来通知验证错误,控件的视觉状态将设置为 1这个适当的状态。

没有,因为工具包代码中包含的默认控件模板实际上没有任何 UI 来表示或显示验证。

因此,为了支持 NotifyOnValidationError,您需要复制和编辑默认模板并添加一些用于验证的 UI。您可以通过查看文本框的模板来了解所需的验证 UI。

It does and it doesn't.

It does because it derives from Control which is where the binding validation mechanism meets the UI code. It has usual visual states of Valid, InvalidFocused and InvalidUnfocused and with a binding set to notify validation errors the controls visual state will be set to one of this appropriate states.

It doesn't in that the default control template included in the toolkit code does not actually have any UI to represent or display the validation.

Therefore in order to support NotifyOnValidationError you will need to copy and edit the default template and add some UI for the validation. You can get some idea of the needed validation UI by looking at the template for a TextBox.

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