【发布时间】:2013-06-03 15:01:35
【问题描述】:
如何从JOptionPane 中删除图标?
ImageIcon icon = new ImageIcon(image);
JLabel label = new JLabel(icon);
int result = JOptionPane.showConfirmDialog((Component) null, label, "ScreenPreview", JOptionPane.OK_CANCEL_OPTION);
【问题讨论】:
-
JOptionPane.PLAIN_MESSAGE ?
-
@mishik: JOptionPane.PLAIN_MESSAGE 不允许我确定取消按钮。
标签: java image swing joptionpane imageicon