为什么我的验证事件在 C# 中没有触发?

发布于 2024-07-13 17:42:00 字数 302 浏览 4 评论 0原文

我有一个动态创建的表单。 它是一个 winForms 应用程序。

该表单只是一个菜单和一系列文本框和标签。 对于本示例,您可以忽略标签。

我的问题是:当我在文本框中编辑内容,然后单击菜单发出“保存”时,最后一个文本框中的文本仍然没有发出其“验证”方法。 这似乎是因为控件仍然具有焦点,并且菜单位于单独的线程中。

当用户单击“保存”时,如何强制触发验证事件? 我不知道用户位于哪个文本框(如果有),并且在“保存”函数中发出 SomeKnownControl.Focus(); 似乎没有帮助。

I have a form that is dynamically created. It is a winForms application.

This form is just a menu and a series of textboxes and labels. For the sake of this example, you can ignore the labels.

My problem is: When I edit stuff in the textboxes, then click the menu to issue "Save", the text from the last text box still hasn't issued its "Validating" method. This appears to be because the control still has focus, and that the menu is in a separate thread.

How can I force the validating events to fire when the user clicks "save"? I don't know which text box the user is on (if any), and issuing SomeKnownControl.Focus(); within the "save" function doesn't seem to help.

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

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

发布评论

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

评论(1

爱的十字路口 2024-07-20 17:42:00

我以前也有过这样的经历。 在您的表单中:

private void SaveButtonClick(...)
{
    if (this.ValidateChildren())
    {
        // do save
    }
}

MSDN 上的 ValidateChildren

I've had this before. In your form:

private void SaveButtonClick(...)
{
    if (this.ValidateChildren())
    {
        // do save
    }
}

ValidateChildren on MSDN

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