比如说点击一个按钮,弹出另外一个组件并且隐藏当前界面
在监听器里面实现
public void actionPerformed(ActionEvent e) {
this.setVisible(false);
new Panel();
}
使用setVisible(false)方法
你说的界面是JPanel,JFrame,还是JDialog,说清楚!
public class Frame1 extends JFrame implements ActionListener{
JButton button = new JButton();
public Frame1(){
button.addActionListener(this);
this.add(button);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setSize(400,300);
this.setVisible(true);
}
public void actionPerformed(ActionEvent e) {
this.setVisible(false);
new Frame2();
}
public static void main(String[] args){
new Frame1();
}
private class Frame2 extends JFrame{
public Frame2(){
JTextField text = new JTextField();
this.add(text);
this.setSize(600, 480);
this.setVisible(true);
}
}
}
cardlayout?