使用java GUI打开新窗口时,我想关闭旧窗口或只是将旧窗口重定向到我尝试过的新窗口
setVisible(false)
但它没有用。
整个 ActionListener 代码:
public class Domainevent implements ActionListener{
public void actionPerformed (ActionEvent event){
GUI gg = new GUI();
DomainGUI ee = new DomainGUI();
gg.dispose();
ee.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
ee.setTitle("Forbidden Domains");
ee.setSize(700,500);
ee.setLocation(350,100);
ee.setResizable(false);
}
}