BAZAR DU WEB

Utilitaires -- Gaming -- Tips info -- Dashcam -- Détente
Lundi 23 Décembre 2024

Java #1 - Ajouter un background personnalisé.

Code utilisé :

private JFrame frame;
private String strBackground;
private ImageIcon icBackground;
private JLabel labBackground;

strBackground = "images/background.png";
icBackground = new ImageIcon(getClass().getClassLoader().getResource(strBackground));
labBackground = new JLabel(icBackground);
labBackground.setBounds(0, 0, 800, 500);

frame.add(labBackground);

Tous les détails dans la vidéo.

Java #2 - Changer l'icône de la fenêtre.

Code utilisé :

private JFrame frame;
private String strLogo;
private Toolkit kit;
private Image imgLogo;

strLogo = "/images/logo.png";

kit = Toolkit.getDefaultToolkit();
imgLogo = kit.getImage(getClass().getResource(strLogo));

frame.setIconImage(imgLogo);

Tous les détails dans la vidéo.

Java #3 - Installer WindowBuilder.

Infos :

Depuis le menu -> Help -> Eclipse MarketPlace, rechercher WindowBuilder, installé le et redémarrer votre IDE.

Tous les détails dans la vidéo.