Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 VB.NET 中有一个应用程序,其中有一个主窗体 (A),它在无模式状态下打开另一个窗体 (B)。然后从表单 AI 想要打开另一个表单 (C) 作为模态表单。
在表格 C 仍然打开的情况下,无论如何在表格 B 上做任何事情?
这不会让用户感到困惑吗?B 显然需要 A 可用,但是当您打开 C 时,您会破坏 B 的功能。
尽管如此,您可能可以使用 EnableWindow() 禁用 A 而不是使 C 模态。
您也可以切换到 MDI 界面。