JDialog
別の中に追加するにはどうすればよいJDialog
ですか?
1 に答える
2
JDialog secondDialog = new JDialog(this); // ("this" is the first JDialog)
secondDialog.setVisible(true)
APIドキュメントとSwingチュートリアルをお読みください。
于 2011-05-05T14:01:04.690 に答える