12

如何从 中删除图标JOptionPane

ImageIcon icon = new ImageIcon(image);
JLabel label = new JLabel(icon);
int result = JOptionPane.showConfirmDialog((Component) null, label, "ScreenPreview", JOptionPane.OK_CANCEL_OPTION);

在此处输入图像描述

4

3 回答 3

24

您可以通过直接指定消息的外观来做到这一点。

您的代码将采用默认代码,而此代码将使用缺少图标的“PLAIN_MESSAGE”样式。组件的行为保持不变。

JOptionPane.showConfirmDialog(null, label, "ScreenPreview", JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);

更多信息:http ://docs.oracle.com/javase/6/docs/api/javax/swing/JOptionPane.html

于 2013-06-07T11:14:03.430 回答
2

通过使用如下透明图标(与黑色“启动图像”相反),这相当容易。尽管请注意,虽然选项窗格在显示方式方面提供了一些“摆动空间”,但如果更改一些内容,使用 a 很快就会变得更容易JDialog

无图标选项窗格

import java.awt.*;
import java.awt.image.BufferedImage;
import javax.swing.*;

class IconFree {

    public static void main(String[] args) {
        Runnable r = new Runnable() {

            @Override
            public void run() {
                // A transparent image is invisible by default.
                Image image = new BufferedImage(
                        1, 1, BufferedImage.TYPE_INT_ARGB);
                JPanel gui = new JPanel(new BorderLayout());
                // ..while an RGB image is black by default.
                JLabel clouds = new JLabel(new ImageIcon(new BufferedImage(
                        250, 100, BufferedImage.TYPE_INT_RGB)));
                gui.add(clouds);

                JOptionPane.showConfirmDialog(null, gui, "Title",
                        JOptionPane.OK_CANCEL_OPTION,
                        JOptionPane.QUESTION_MESSAGE,
                        new ImageIcon(image));
            }
        };
        // Swing GUIs should be created and updated on the EDT
        // http://docs.oracle.com/javase/tutorial/uiswing/concurrency/initial.html
        SwingUtilities.invokeLater(r);
    }
}
于 2013-06-07T18:40:33.140 回答
0

写 -1 代替JOptionPane.QUESTION_MESSAGE

于 2018-08-25T15:26:32.320 回答