C# 表单:锁定主表单并处理另一个表单

发布于 2024-10-20 05:03:56 字数 251 浏览 4 评论 0原文

我想创造这样的东西。

在此处输入图像描述

当按钮单击主窗体时将锁定/禁用/不可访问。然后加载另一个表单并进行一些处理。 (实际上,当单击按钮时,它将从文件中读取一些文本并写入数据库。我放置进度条以提供美观的效果)

正如我所说,我想锁定/禁用/无法访问主窗体并加载另一个窗体。

我该怎么做?

请帮忙 约翰

I want to create something like this.

enter image description here

When the button clicks main form will lock/disable/inaccessible. Then the another form load and do some processing.
(actually when the button clicked, it will read some text from a file and write to db. I put progress bar to give a nice look)

As I said I want to lock/disable/inaccessible main form and load the another form.

How can I do this ?

Please Help
Yohan

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

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

发布评论

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

评论(3

谁的年少不轻狂 2024-10-27 05:03:56

new Form().ShowDialog() 就可以做到这一点。

new Form().ShowDialog() will do just that.

北座城市 2024-10-27 05:03:56

oldForm.Hide()newForm().ShowDialog()

oldForm.Hide() and newForm().ShowDialog()

巴黎夜雨 2024-10-27 05:03:56

正如 JN 提到的,ShowDialog 可以工作,但我认为您需要在打开的新表单中包含处理代码,因为程序只会在新表单完成并关闭后返回并“解锁”您的主表单。

编辑我刚刚看到原始帖子下面的评论,我想这已经被排序了,但我会在上面留下我的评论以防万一

as J.N. mentioned, ShowDialog will work, but I think you will need to have your processing code in the new form you open up, as the program will only return and 'unlock' your main form after the new form has finished and closed.

Edit I just saw the comments below the original post, I guess this has been sorted, but I'll leave my comments above just in case

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