标签: java user-interface jframe
我想使用命令new form2()。show,this.setVisible(false)从form1调用form2。 我想问一下如何在不使用setvisible()的情况下关闭form1。因为setVisible只隐藏它但没有关闭程序
答案 0 :(得分:0)
- 当您使form2可见时,可以使用setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE)方法关闭form1。
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE)