不希望错误提供程序在保存事件之前检查控件验证

发布于 2024-07-27 12:15:39 字数 370 浏览 11 评论 0原文

我正在编写一个用户控件。 我正在向每个控件加载一个自定义 biz 对象。 因为 biz 对象实现了 IDataErrorInfo 接口,所以我能够在用户控件上使用 ErrorProvider 控件。

我将 ErrorProvider 绑定到 biz 对象,如下所示:

Me.ErrorProvider1.DataSource=MyBizObject

这一切都工作正常,除了。 一旦用户控件加载到主机窗体中,验证就会发生(因此我在所有字段旁边显示眨眼错误标志)。

每个 biz 对象都实现一个 SAVE 方法,我希望在 biz 对象上触发保存事件之前不会发生验证。

实现这一目标的最佳实践是什么?

赛斯

I am writing a User Control. Into each control I am loading a custom biz object. Because the biz object implements IDataErrorInfo interface I am able to use the ErrorProvider control on the user control.

I am binding the ErrorProvider to the biz object like this:

Me.ErrorProvider1.DataSource=MyBizObject

This is all working perfectly EXCEPT. The validation is happening (and therefore I am displaying the blinkey error signs next to all feilds) as soon as the User control is loaded into the host form.

Each biz object implements a SAVE method and I want the validate to not happen until the save event is triggered on the biz object.

What is best practice for accomplishing this??

Seth

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

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

发布评论

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

评论(1

最好是你 2024-08-03 12:15:40

我不知道这是否是最好的方法...但我所做的不是分配 ErrorProvider.DataSource 直到控件的保存事件。

目前这是有效的。

赛斯

I don't know if this was the best way or not...but what I did was not assign the ErrorProvider.DataSource UNTIL the Save Event for the control.

This is working for now.

Seth

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