Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的对话框示例如下:
public class DialogNotify extends JDialog{ public DialogNotify() { setModal(true); setSize(200, 100); setVisible(true); } }
如何让它显示无框?无框,我的意思是右上角的“关闭”按钮或左上角的菜单栏。
我发现了这个主题的博客条目:制作自定义无框窗口
关键似乎是调用setUndecorated(true)来抑制框架和标题栏。
setUndecorated(true)