java中如何隐藏一个界面?

2024年11月19日 04:29
有5个网友回答
网友(1):

比如说点击一个按钮,弹出另外一个组件并且隐藏当前界面
在监听器里面实现
public void actionPerformed(ActionEvent e) {
this.setVisible(false);
new Panel();
}

网友(2):

使用setVisible(false)方法

网友(3):

你说的界面是JPanel,JFrame,还是JDialog,说清楚!

网友(4):

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);
}
}
}

网友(5):

cardlayout?