如果在java swing **中尝试打开而不是闪烁的jframe窗口,则只允许一个Jframe窗口
HOW
**
答案 0 :(得分:2)
我只能猜出你的问题应该是什么意思,但我最好的猜测是你要创建一个模态框架。 JFrame
不支持此类框架。您必须改为使用JDialog
(http://docs.oracle.com/javase/7/docs/api/javax/swing/JDialog.html)。
JDialog dialog = new JDialog(parentFrame , "someTitle" , true);
... //create dialog
dialog.setVisible(true);
//now the parentFrame is blocked until the dialogwindow is closed
答案 1 :(得分:2)
如果尝试打开而不是闪烁的jframe,则仅允许一个Jframe窗口 java swing中的窗口