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.
表单隐藏或停用时有什么区别?隐藏我的主表单时,我将事件记录到数据库中(作为应用程序启动)。所以我想知道何时进行日志记录:隐藏事件还是停用?当我停用表格时,我到底在做什么?
OnDeactivate每当您的表单(或“窗口”)失去焦点(例如当用户选择另一个窗口时)时执行。 OnHide当您调用Visible := False或执行MyForm.Hide;
OnDeactivate
OnHide
Visible := False
MyForm.Hide;
TForm 中没有内置用于OnMinimizeor的 OnEvent 方法OnRestore,但是快速的 Google 搜索将产生关于如何自己实现它们的很好的示例。
OnMinimize
OnRestore