How do I add JDialog
开发者_运维知识库within another JDialog
?
JDialog secondDialog = new JDialog(this); // ("this" is the first JDialog)
secondDialog.setVisible(true)
Read the api doc and the Swing tutorial.
How do I add JDialog
开发者_运维知识库within another JDialog
?
JDialog secondDialog = new JDialog(this); // ("this" is the first JDialog)
secondDialog.setVisible(true)
Read the api doc and the Swing tutorial.
精彩评论