Java - 从Panel1更改为Panel2

时间:2015-10-26 15:49:35

标签: java swing jpanel

我想创建一个简单的java应用程序,但我遇到了一些问题。 这是我的主要课程:

import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import java.awt.BorderLayout;
import java.awt.Component;

import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;

public class MainWindow {

    private JFrame frame;

    /**
     * Launch the application.
     */
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    MainWindow window = new MainWindow();
                    window.frame.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    /**
     * Create the application.
     */
    public MainWindow() {
        initialize();
    }

    /**
     * Initialize the contents of the frame.
     */
    private void initialize() {
        frame = new JFrame();
        frame.setBounds(100, 100, 450, 300);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JPanel panel = new JPanel();
        frame.getContentPane().add(panel, BorderLayout.CENTER);

        JButton btnNewButton = new JButton("First B");
        panel.add(btnNewButton);
        btnNewButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                SecWindow SW = new SecWindow();
                //-----
            }           
        });                     
    }    
}

Secound class:

import javax.swing.JButton;
import javax.swing.JPanel;

public class SecWindow {

    public SecWindow() {
        SecPanel();
    }

    public void SecPanel() {            
        JPanel panel2 = new JPanel();
        JButton btnNewButton_2 = new JButton("Sec B");
        panel2.add(btnNewButton_2);     
    }
}

我该怎么做:当我按下" First B"我想删除第一个面板并创建一个新的类SecWindow()

2 个答案:

答案 0 :(得分:4)

  

我怎么能这样做:当我按下"第一个B"我想删除第一个面板并创建一个新的SecWindow()类。

您应该使用CardLayout。 CardLayout允许您在框架中交换面板。

阅读How to Use CardLayout上Swing教程中的部分,了解更多信息和工作示例。

该示例使用组合框交换面板,因此您只需将该代码移动到按钮的ActionListener。

答案 1 :(得分:0)

try{
secWindow secondWindow = new secWindow();
secondWindow.frame.setVisible(true);
window.frame.setVisible(false);
} catch (Exception e) {
                e.printStackTrace();

这将隐藏第一个窗口并显示第二个窗口。 你无法完全删除"具有主要方法的对象。您的应用将以主要方法开始和结束。

相反,您可以在那里制作新类并传输主要方法