如何调整JOptionPane.showConfirmDialog的大小

时间:2014-03-24 23:56:27

标签: java swing joptionpane

当我调用showConfirmDialog()类的JOptionPane方法时,如何修改要弹出的对话框的大小?

1 个答案:

答案 0 :(得分:3)

您可以创建JPanel并覆盖它的getPreferredSize方法并返回一些所需的维度。然后将JPanel添加到您的JOptionPane

粗略的例子:

JPanel panel = new JPanel() {
            @Override
            public Dimension getPreferredSize() {
                return new Dimension(320, 240);
            }
        };

//We can use JTextArea or JLabel to display messages
JTextArea textArea = new JTextArea();
textArea.setEditable(false);
panel.setLayout(new BorderLayout());
panel.add(new JScrollPane(textArea));

JOptionPane.showConfirmDialog(null,
            panel, //Here goes content
            "Here goes the title",
            JOptionPane.OK_CANCEL_OPTION, // Options for JOptionPane
            JOptionPane.ERROR_MESSAGE); // Message type