我需要创建自定义对话框并将JPanel放入其中。有可能吗?
答案 0 :(得分:2)
Panel inside dialog box应该有你需要的东西。
答案 1 :(得分:1)
可能你需要这个,
JPanel myPanel = new JPanel();
myPanel.setBounds(0, 0, 400, 450);
myPanel.setBackground(Color.YELLOW);
JOptionPane jop = new JOptionPane();
JDialog dialog = jop.createDialog("This is my Dialog");
dialog.setSize(400, 450);
dialog.setContentPane(myPanel);
dialog.setVisible(true);
我已经测试了这段代码,并且对我工作正常......