1

我为欢迎屏幕设计了一个界面,其中一个 JFrame 包含两个 JPanel(右侧的 JPanel1 和左侧的 JPanel2)。左边的按钮是切换JPanel1中的Panels。我想按下一个按钮来用另一个 JPanel 替换 JPanel1 的内容,但我不知道怎么做。请帮忙。

4

3 回答 3

4

这是一个非常简单的示例,应该与您的描述相近。在左侧,我们有一个拥抱按钮来切换右侧面板的内容。在右侧,您有一个带有给定边框和标签的面板。当您按下按钮时,右侧的内容与另一个面板交换。

import java.awt.BorderLayout;
import java.awt.CardLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;

public class TestCardLayout2 {

    protected void initUI() {
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JPanel leftPanel = new JPanel(new BorderLayout());
        JLabel label = new JLabel("Left panel");
        leftPanel.add(label, BorderLayout.NORTH);
        JButton button = new JButton("Toggle right panel");
        leftPanel.add(button);
        frame.add(leftPanel, BorderLayout.WEST);

        final CardLayout cardLayout = new CardLayout();
        final JPanel rightPanel = new JPanel(cardLayout);
        rightPanel.setPreferredSize(new Dimension(200, 500));

        JPanel rightPanel1 = new JPanel(new FlowLayout(FlowLayout.LEFT));
        rightPanel1.setBorder(BorderFactory.createLineBorder(Color.RED));
        JPanel rightPanel2 = new JPanel(new FlowLayout(FlowLayout.RIGHT));
        rightPanel2.setBorder(BorderFactory.createLineBorder(Color.BLUE));
        JLabel label1 = new JLabel("Right panel 1 with a red border");
        JLabel label2 = new JLabel("Right panel 2 with a blue borer");
        rightPanel1.add(label1);
        rightPanel2.add(label2);

        rightPanel.add(rightPanel1, "panel1");
        rightPanel.add(rightPanel2, "panel2");
        frame.add(rightPanel, BorderLayout.EAST);

        button.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                cardLayout.next(rightPanel);
            }
        });
        frame.pack();
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                new TestCardLayout2().initUI();
            }
        });
    }

}
于 2012-09-11T15:01:48.927 回答
2

CardLayoutwill be的替代方法JRootPane及其JRootPane.setContentPane()方法。这是一个例子:

final JPanel panel1 = ...;
final JPanel panel2 = ...;
boolean showingPanel1 = true;
final JRootPane rootPane = new JRootPane();
rootPane.setContentPane(panel1);
JButton switchButton = new JButton("Switch");
switchButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent evt) {
        if (showingPanel1) {
            rootPane.setContentPane(panel2);
        } else {
            rootPane.setContentPane(panel1);
        }
        showingPanel = !showingPanel;
    }
});

rootPaneswitchButton组件添加到您的窗口,然后单击switchButton将切换出面板。

这是一个教程。您应该主要关注JRootPane.setContentPane,教程中的其他内容不相关。

于 2012-09-11T14:54:58.823 回答
-1

我发现的最佳答案是,我将只创建一个 JFrame,并让一个大 JPanel 包含两个 JPanel(JPanelLeft 包含按钮,JPanelRight 包含按钮的功能)然后我将为每个 JButton 复制主 JPanel。当我按下任何按钮时,我将执行 (JFrame.getContentPane.removeAll) 来删除旧的 JPanel,然后是 (JFrame.getContentPane.Add(NewJPanel)。

这对我有用,并保持我想要的设计。感谢每一个人。

于 2012-09-12T13:12:28.600 回答