JDialog not showing minimize/close button

时间秒杀一切 提交于 2019-12-06 07:09:32

It's not clear where things may have gone awry, but the complete example below works on Ubuntu 12, Java 6; it may help you pin down the problem. Note that all top-level containers must be constructed on the event dispatch thread.

import java.awt.Dimension;
import java.awt.EventQueue;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.WindowConstants;


public class TestDialog extends JDialog {

    public static final String title = "Test Dialog";

    public TestDialog(JFrame parent) {
        super(parent, title, true);
        add(new JPanel(){

            @Override
            public Dimension getPreferredSize() {
                return new Dimension(320, 240);
            }
        });
        pack();
        setLocationRelativeTo(null);
        setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
    }
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {

            @Override
            public void run() {
                new TestDialog(null).setVisible(true);
            }
        });
    }
}

I have found a temporary solution of sorts, if you change the following line:

super(parent, title, true);

to

super(null, title, Dialog.ModalityType.MODELESS);

then the window close button will appear when using GNOME. I am not sure what other issues this could cause however.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!