我有一个新的netbeans“Java应用程序”项目,我试图在主JFrame中添加第二个JFrame,用户可以在其中加载文件。
所以我有主要的JFrame主方法
public static void main(String args[])
{
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(MainView.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(MainView.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(MainView.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(MainView.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new MainView().setVisible(true);
}
});
}
当我点击运行时,这是运行的JFrame,在同一个项目中我定义了另一个JFrame对象,输入Frame。主框架中有一个按钮,当命中时,在静态定义的输入JFrame上执行.setVisible。但如果我在输入框上单击“X”,主框架也会关闭?
有什么想法吗?
答案 0 :(得分:2)
我认为你有.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);在内部JFrame对象上,但是您没有提供足够的代码来确定。
如果是这种情况,您希望将其更改为DISPOSE_ON_CLOSE。