2015-04-06 67 views

回答

1

但我無法訪問JFrame,直到我關閉了JDialog。

這意味着你使用模態JDialog。

您需要使用非模態JDialog。

JDialog dialog = new JDialog(frame, false); 
... 
dialog.setVisible(true); 

或者您可以在使對話框可見之前使用setModal(false)方法。