如何在 wpf 中使用数据验证创建自定义行为?
我想制作一个 WPF 控件,当验证失败时(IE 变成蓝色或更改控件上的任意 DP),该控件将执行自定义行为。
I want to make a WPF control that will perform a custom behavior when validation fails (IE turn blue or change an arbitrary DP on the control).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以向控件添加验证视觉状态或应用一个特殊的 ErrorTemplate 这些可以处理视觉问题诸如变蓝之类的要求。
设置属性或调用方法可以通过订阅 Validation 类的 Error 事件。
You could add validation visual states to the control or apply a special ErrorTemplate these could take care of visual requirements such as turning blue.
Setting a property or calling a method could be done by subscribing to the Error event of the Validation class.