JFrame关闭按钮

时间:2012-05-04 23:06:37

标签: java button jframe exit

我有一个Jframe窗口,里面有一个按钮。通过单击按钮,它将打开一个新的JFrame窗口。但是当我关闭此窗口时,它会自动关闭第一个Jframe窗口和按钮。当我关闭第二个时,如何防止第一个Jframe窗口关闭?

public static void main (String[] args){
        JFrame frame = new JFrame("Test");
        frame.setVisible(true);
        frame.setSize(500,500);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JButton button = new JButton("Test");


        button.addActionListener(new ActionListener()
        {
            public void actionPerformed(ActionEvent e)
            {
                new SView().gui();
            }
        });


        JPanel panel = new JPanel();
        GridBagLayout gridbag = new GridBagLayout();
        panel.setLayout(gridbag);
        panel.add(button);
        panel.setBackground(new Color(156, 93, 82));
        frame.add(panel, BorderLayout.CENTER);

1 个答案:

答案 0 :(得分:3)

不要打电话

 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);