为什么我的验证事件在 C# 中没有触发?
我有一个动态创建的表单。 它是一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我以前也有过这样的经历。 在您的表单中:
MSDN 上的 ValidateChildren
I've had this before. In your form:
ValidateChildren on MSDN