mardi 25 novembre 2014

Astuce: Comment intégrer une image dans un JPanel

 
 ImageIcon icone =  new ImageIcon("./lib/image1"); 
 JLabel image = new JLabel(icone);        
 image.setSize(jPanel1.getWidth(),jPanel1.getHeight());
 jPanel1.add(image);
 jPanel1.repaint();

Aucun commentaire: