Delphi - 覆盖TForm.showModal的隐藏行为

时间:2011-12-16 21:41:10

标签: delphi tform windowing

我目前正在为现有的Delphi应用程序编写一个窗口系统。

目前,该程序由许多全尺寸表单组成,这些表单按照需要的顺序以模态显示,并且用户不能移动任何表单。我的目标是让所有这些形式都可以移动。以前的表单堆叠在彼此之上,但由于没有可以移动,因此用户看不到背景表单。到目前为止,我的解决方案是在打开一个新孩子时隐藏“父母”表格,并在孩子关闭时重新显示它。

不幸的是,因为每个孩子都使用showModal调用,所以直到模态过程完成后才调用make表单才能显示,因此在隐藏子表单之后,用户会看到没有表单的分裂闪存是可见的。

有没有办法阻止模态表单在进程完成后自动隐藏?一旦父表单再次可见,这将允许我手动隐藏它们。我试图在每个子表单的FormHide事件中安排此操作,但这不起作用,因为在打开自己的子项时也会隐藏子表单。

编辑:

到目前为止,根据雷米的建议,这是我的目标

procedure openModalChild(child: TForm; parent: TForm);
var
  WindowList: Pointer;
  SaveFocusCount: Integer;
  SaveCursor: TCursor;
  SaveCount: Integer;
  ActiveWindow: HWnd;
  Result: integer;
begin
  CancelDrag;
  with child do begin
  Application.ModalStarted;
  try
  ActiveWindow := GetActiveWindow;
  WindowList := DisableTaskWindows(0);
  //set the window to fullscreen if required
  setScreenMode(child);
  try
    Show; //show the child form
    try
      SendMessage(Handle, CM_ACTIVATE, 0, 0);
      ModalResult := 0;
      repeat
        Application.HandleMessage;
        //if Forms.Application.FTerminate then ModalResult := mrCancel else
          if ModalResult <> 0 then closeModal(child as TCustomForm);
      until ModalResult <> 0;
      Result := ModalResult;
      SendMessage(Handle, CM_DEACTIVATE, 0, 0);
      if GetActiveWindow <> Handle then ActiveWindow := 0;
    finally
      parent.Show;
      Hide;
    end;
  finally
    EnableTaskWindows(WindowList);
    parent.Show; //reshow the parent form
    if ActiveWindow <> 0 then SetActiveWindow(ActiveWindow);
  end;
  finally
    Application.ModalFinished;
  end;
  end;
end;

这很有效,但唯一的问题是主动重复循环永远不会中断,即使在子进程被转义之后,父表单也永远不会被重新显示。 有什么方法可以解决这个问题吗?

1 个答案:

答案 0 :(得分:10)

ShowModal()在进入模态处理循环之前明确调用Show(),并在退出循环后立即显式调用Hide()。如果不更改VCL的Forms.pas源文件中的代码,则无法更改。

如果您需要更好地控制窗口而不编辑VCL源代码,则根本不要使用ShowModal()。根据需要自行使用Show()Hide()DisableTaskWindows()EnableTaskWindows()。我想你会看看Forms.pas,看看它们是如何被使用的。将ShowModal()的实现复制到您自己的函数中,然后您可以根据需要对其进行自定义。