所有mdi表格关闭时的事件

前端之家收集整理的这篇文章主要介绍了所有mdi表格关闭时的事件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
伙计们,如果有人知道在所有MDI表格关闭时我可以截获的任何事件或方法,我想.

例:

我想在我的主窗体中实现一个事件,当我关闭所有MDI表单时,触发了这样的事件.

如果有人可以帮忙,感激不尽.

解决方法

MDI子表单(实际上是任何表单)在被销毁时将通知主表单.您可以使用此通知机制.例:
type
  TForm1 = class(TForm)
    ..
  protected
    procedure Notification(AComponent: TComponent; Operation: TOperation);
      override;

  ..

procedure TForm1.Notification(AComponent: TComponent; Operation: TOperation);
begin
  inherited;
  if (Operation = opRemove) and (AComponent is TForm) and
      (TForm(AComponent).FormStyle = fsMDIChild) and
      (MDIChildCount = 0) then begin

    // do work

  end;
end;
原文链接:https://www.f2er.com/delphi/101680.html

猜你在找的Delphi相关文章