How to allow Delphi secondary forms behind the main form

前端 未结 3 1502
予麋鹿
予麋鹿 2020-12-18 07:42

If in Delphi 2010 or XE Application.MainFormOnTaskbar is set to true then all secondary forms are always in front of the main window. It does not matter what the Popupmode o

3条回答
  •  北海茫月
    2020-12-18 08:14

    i found a way to solve this issue.

    on *.dpr

    change Application.MainFormOnTaskbar := true; to Application.MainFormOnTaskbar := false;

    this will allow you child form behind you main form.

提交回复
热议问题