Delphi消息框出现在其他窗体后面

发布于 2024-12-14 04:52:05 字数 289 浏览 2 评论 0原文

我使用下面的代码在 Delphi 7 中创建一个消息框。但是,屏幕上还有另一个表单,其 FormStyle 设置为 fsStayOnTop 并且消息框出现在该表单后面。

有什么办法可以强制messagebox出现在前面吗?

    if Application.MessageBox('Amessage here','Title', +MB_APPLMODAL + MB_ICONQUESTION + MB_YESNO) = IDNO then

I am using the code below to create a messagebox in Delphi 7. However I also have another form on screen who's FormStyle is set to fsStayOnTop and the messagebox appears behind this form.

Is there any way to force the messagebox to appear in front?

    if Application.MessageBox('Amessage here','Title', +MB_APPLMODAL + MB_ICONQUESTION + MB_YESNO) = IDNO then

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

荒路情人 2024-12-21 04:52:05

调用 NormalizeTopMosts 在显示消息框之前。

使用 NormalizeTopMosts 允许消息框或对话框
使用 Windows API 函数(例如 MessageBox 和
MessageDlg)直接出现在最顶层表单的顶部。否则
最上面的窗体保留在顶部,并且可能会遮挡消息框。

(希望它在 Delphi 7 中可用。)

编辑:不确定否决票。如果它暗示 OP 应使用本机 MessageBox 函数并将其父级 HWND 设置为最上面的窗口 - 我同意。但也许由于某种原因这是不可能的。

Call NormalizeTopMosts prior to showing the message box.

Use NormalizeTopMosts to allow a message box or dialog box that is
displayed using the Windows API functions (such as MessageBox and
MessageDlg) directly, appear on top of a topmost form. Otherwise the
topmost form remains on top, and may obscure the message box.

(Hope it's available in Delphi 7.)

Edit: Not sure about the downvote. If it hints in the direction that OP should use the native MessageBox function and set its parent HWND to the topmost window - I would agree. But maybe this is not possible for some reason.

风吹过旳痕迹 2024-12-21 04:52:05

Windows.pas 中,您可以找到 MessageBox() 的更多标志:

MB_APPLMODAL = $00000000;
MB_SYSTEMMODAL = $00001000;
MB_TASKMODAL = $00002000;

MessageBox 文档

您甚至可以使用 MB_TOPMOST 标志。

In Windows.pas you can find more flags to MessageBox():

MB_APPLMODAL = $00000000;
MB_SYSTEMMODAL = $00001000;
MB_TASKMODAL = $00002000;

Read about them in MessageBox documentation

You can even use MB_TOPMOST flag.

彡翼 2024-12-21 04:52:05

尝试使用 MB_TASKMODAL 标志而不是 MB_APPLMODAL。

Try MB_TASKMODAL flag instead of MB_APPLMODAL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文