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();
}
} |
Partager