Cambiar el Icono a un JOptionPane

Este tutoriales muy interesante para darle un toque mas cool a tus mensajes con el meto ImageIcon pueden cambiar el Icono que trae por defecto el JOptionPane y lucira de esta forma.



package javaswing; import javax.swing.ImageIcon; import javax.swing.JOptionPane; /** * * @author Reynaldo */ public class JavaSwing { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here JOptionPane.showMessageDialog(null, "Ven la Imagen Cambio.", "Trinisoft", JOptionPane.INFORMATION_MESSAGE, new ImageIcon("src/imagenes/joystick.png")); } }

Comentarios

Publicar un comentario

Deja tu Comentario.