What is this? From this page you can use the Social Web links to save Java about box to a social bookmarking site, or the E-mail form to send a link via e-mail.

Social Web

E-mail

E-mail It
November 16, 2004

Java about box

Posted in: Java, Tips

Je m’apprête à créer une classe afin d’avoir une belle boite de dialogue “A propos” pour JGallery. Afin de tester le menu, j’ai voulu créer une boite basique, et l’API java le fait déjà très bien. Ci-dessous une simple instruction qui crée une boite “A propos” très simple mais déjà pleinement exploitable :

JOptionPane.showMessageDialog(this,
"JGallerynVersion 1.0nnhttp://banks.free.fr/nnCopyright (c) 2004 P.Abaziou",
"About", JOptionPane.OK_OPTION,
new ImageIcon(this.getClass().getResource("images/photo.png"))
);

Et voilà :

Simple about box in java


Return to: Java about box