我想同时显示两个(或更多) JFrames 当我关闭其中一个(使用默认关闭按钮)时,其他帧仍应可见。
我该怎么做?
答案 0 :(得分:83)
如果不希望您的应用程序在JFrame
关闭时终止,请使用
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE)
而不是
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
DO_NOTHING_ON_CLOSE
(在WindowConstants中定义):不要做任何事情;要求程序在已注册的WindowListener对象的windowClosing方法中处理操作。HIDE_ON_CLOSE
(在WindowConstants中定义):在调用任何已注册的WindowListener对象后自动隐藏框架。DISPOSE_ON_CLOSE
(在WindowConstants中定义):在调用任何已注册的WindowListener对象后自动隐藏和处置框架。EXIT_ON_CLOSE
(在JFrame中定义):使用System退出方法退出应用程序。仅在应用程序中使用它。 在问题澄清之前,这是我的答案,可能仍然有用:
如果您想再次显示相同的内容,可以在setVisible(false)
上使用JFrame
。
否则请致电dispose()
至remove all of the native screen resources。
答案 1 :(得分:3)
对你有帮助吗?
import java.awt.BorderLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
public class TwoJFrames {
public static void main(String[] args) {
int nb = 4;
if (args != null && args.length > 0) {
nb = Integer.parseInt(args[0]);
}
final int frameCount = nb;
SwingUtilities.invokeLater(new Runnable() {
public void run() {
for (int i = 0; i < frameCount; i++) {
JFrame frame = new JFrame("Frame number " + i);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
JPanel p = new JPanel(new BorderLayout());
p.add(new JLabel("Click on the corner to close..."), BorderLayout.CENTER);
frame.setContentPane(p);
frame.setSize(200, 200);
frame.setLocation(100 + 20 * i, 100 + 20 * i);
frame.setVisible(true);
}
}
});
}
}