Entfernen Sie das Symbol von JOptionPane

So entfernen Sie das Symbol aus JOptionPane?

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

Entfernen Sie das Symbol von JOptionPane

InformationsquelleAutor Code Hungry | 2013-06-07
Schreibe einen Kommentar