JOption Pane图标放置

时间:2017-04-20 19:19:46

标签: java swing icons joptionpane

我试图将我的图标放在JOptionPane中。我已经在这里阅读了这篇文章,但我尝试使用我需要的选项,但它没有发生。我希望将图像放在顶部,然后选择对话框和按钮。这是我到目前为止所做的。

ImageIcon icon = new ImageIcon(img.class.getResource("zoo.png"));
    String[] options = {"Animals", "Habitat", "Exit"};
    int x = JOptionPane.showOptionDialog(null, "Zookeepers would you like     to view animal activities or monitor habitats?",
            "Welcome to the Brooklyn Zoo!",     JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, icon, options,     options[0]);

0 个答案:

没有答案