我有一个JPanel对象说面板,它包含对JPanel对象的引用。 假设面板指向panel-1并且在某些单击(动作)上,它应该指向panel-2,而panel-2必须替换JFrame对象框架上的panel-1。
但是,它没有更新。我尝试了以下方法,但徒劳无功:
frame.repaint();
panel.revalidate();
答案 0 :(得分:2)
我认为这段代码可以帮到您尝试的目的。它有一个JPanel,可以保存绿色JPanel或红色JPanel,还有一个按钮可以翻转。
public class Test{
boolean isGreen; // flag that indicates the content
public Test(){
JFrame f = new JFrame ("Test"); // the Frame
f.setLayout (new BorderLayout());
JPanel p = new JPanel(new BorderLayout()); // the content Panel
f.add(p, BorderLayout.CENTER);
JPanel green = new JPanel(); // the green content
green.setBackground(Color.GREEN);
JPanel red = new JPanel(); // the red content
red.setBackground(Color.RED);
p.add(green); // init with green content
isGreen = true;
JButton b = new JButton ("flip"); // the flip button
b.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
p.removeAll(); // remove all of old content
if(isGreen){
p.add(red); // set new red content
isGreen = false;
} else {
p.add(green); // set new green content
isGreen = true;
}
p.revalidate(); // invalidate content panel so component tree will be reconstructed
f.repaint(); // repaint the frame so the content change will be seen
}
});
f.add (b, BorderLayout.SOUTH);
f.pack();
f.setSize(250,330);
f.setVisible (true);
}
public static void main (String [] args){
new Test();
}
}