我有此应用程序窗口,并扩展了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。然后打开另一个