Java:如何在显示对话框时禁止单击面板?

发布于 2024-12-07 01:20:58 字数 142 浏览 1 评论 0原文

我想在显示对话框时禁用单击背景面板或框架。我希望对话不断出现在该面板或框架的顶部,直到其关闭。

在此处输入图像描述

我该如何执行此操作?

I want to disable clicking on the background panel or frame while showing a dialogue. And I want the dialogue to appear on top of this panel or frame constantly until it is closed.

Enter image description here

How can I do this?

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

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

发布评论

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

评论(2

完美的未来在梦里 2024-12-14 01:20:58

制作 对话框/JDialog 通过调用 dialog.setModal(true);< /代码>。这将解决单击背景面板和保留在面板顶部的问题。


看来这个方法已经过时了,所以你应该使用 dialog.setModalityType(Dialog.ModalityType type)

Make Dialog/JDialog modal by calling dialog.setModal(true);. This will solve both issues of clicking background panel and remaining on top of panel.


It seems like this method is obsolete so better you should use dialog.setModalityType(Dialog.ModalityType type)

溺孤伤于心 2024-12-14 01:20:58

您可以将 JOptionPane 用于消息对话框。

You can use JOptionPane for the message dialog.

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