Delphi消息框出现在其他窗体后面
我使用下面的代码在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
调用
NormalizeTopMosts
在显示消息框之前。(希望它在 Delphi 7 中可用。)
编辑:不确定否决票。如果它暗示 OP 应使用本机 MessageBox 函数并将其父级 HWND 设置为最上面的窗口 - 我同意。但也许由于某种原因这是不可能的。
Call
NormalizeTopMosts
prior to showing 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.
在
Windows.pas
中,您可以找到MessageBox()
的更多标志:在 MessageBox 文档
您甚至可以使用
MB_TOPMOST
标志。In
Windows.pas
you can find more flags toMessageBox()
:Read about them in MessageBox documentation
You can even use
MB_TOPMOST
flag.尝试使用 MB_TASKMODAL 标志而不是 MB_APPLMODAL。
Try MB_TASKMODAL flag instead of MB_APPLMODAL.