关闭和打开Windows

时间:2019-03-24 03:55:45

标签: java jframe applicationwindow

我有此应用程序窗口,并扩展了2 Jdialogs。当前,我是第一个jdialog,我想显示另一个Jdialog,然后同时在Jdialog1

中关闭应用程序窗口

我尝试了

setvisible(false);
dispose();
System.exit(0);

这是我的代码:

dispose();//closing the current frame
PizzaOrdering pizz = new PizzOrdering();//closing another one
pizz.setVisible(false); 
Receipt receit new Receipt();//opening the other one
receit.setVisible(true);

但是一切都不起作用。关闭另一个“应用程序”窗口和当前的Jdialog。然后打开另一个

0 个答案:

没有答案