C# Windows 菜单项帮助用户管理打开的窗口

发布于 2024-11-26 16:07:51 字数 147 浏览 1 评论 0原文

我想让一个窗口的菜单项维护由主窗体生成的打开窗口的列表。当表单关闭时,列表将减少。 Excel 2003 中存在此功能,单击窗口的菜单项会给出打开的工作簿列表。我可以编写一个单例表单,其中所有其他表单都会报告表单创建,但我想知道.Net 中是否已经存在此功能。我不想重新发明轮子。

I want to have a window's menu item maintain a list of open windows that have been spawned by the main form. When a form is closed the list will be reduced. This feature exists in excel 2003 where clicking the window's menu item a list of open workbooks is given. I can write a singleton form where all other forms will report a form creation but I'm wondering whether this feature already exist in .Net. I don't want to reinvent the wheel.

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

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

发布评论

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

评论(3

初吻给了烟 2024-12-03 16:07:51

每个线程都需要一个单独的线程,并且在每个线程上调用 Application.Run(yourform)
显然,您可以创建线程、表单等数组。

You need a separate thread for each, and on each thread you call Application.Run(yourform).

You can obviously create arrays of threads, forms et cettera.

烟雨扶苏 2024-12-03 16:07:51

它会自动为您完成。以下链接向您展示如何操作: http://msdn.microsoft.com/en -us/library/ms171654.aspx

It's done for you Automatically. Here's the link to show you how: http://msdn.microsoft.com/en-us/library/ms171654.aspx

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