Bonjour, je suis en train de travailler sur les images dans les JPanel et j'ai un problème.Lorsuqe j'insère l'image dans le JPanel, elle s'affiche mais quand je redimensionne la fenêtre,l'image ne prend pas tout l'espace.Vous pourriez m'aider?
Voici mon code,merci!
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package projetNero;
 
 
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
 
public class NeroImage {
    private JFrame fr;
    private JPanel pane;
    private JLabel label;
    private ImageIcon icon;
 
    public NeroImage(){
        fr = new JFrame("Image");
        pane = new JPanel();
        label = new JLabel();
        icon = new ImageIcon("imageNero.gif");
        label.setIcon(icon);
        pane.add(label);
        fr.getContentPane().add(pane);
        fr.setSize(700,150);
        fr.setVisible(true);
    }
 
 
 
    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        new NeroImage();
    }
 
}