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.
我的应用程序产生了几个独立的表单。一旦创建应用程序就会忘记它们。所有操作都以该表单本身处理。当应用程序关闭时,表格也会关闭,我想是 RTS。这很好,除了 OnClose 和 OnDestroy 事件都没有被触发,因此会发生内存泄漏。我可以管理存在哪些表格(就像我现在所做的那样),但实际上应用程序必须完全忘记这些表格。
有没有办法在不是应用程序主表单的表单内部检测应用程序正在关闭的过程中?
如果表单被销毁,该OnDestroy事件肯定会触发。它是从表单的销毁代码中调用的。所以唯一的结论是你的表单没有被破坏,所以被泄露了。
OnDestroy
有几种明显的方法可以确保您的独立表单不被泄露:
Application
MainForm
Application.Run
选项 1 是最常用的方法。