update
This commit is contained in:
33
DEV.3.1/TP/TP2/Galerie.1/GFenetre.java
Normal file
33
DEV.3.1/TP/TP2/Galerie.1/GFenetre.java
Normal file
@@ -0,0 +1,33 @@
|
||||
import java.awt.*;
|
||||
import javax.swing.*;
|
||||
|
||||
public class GFenetre extends JFrame {
|
||||
|
||||
private JFrame frame;
|
||||
private JLabel image1;
|
||||
private JLabel image2;
|
||||
private GestionSouris gsouris;
|
||||
|
||||
public GFenetre() {
|
||||
this.frame = new JFrame("Galerie");
|
||||
this.image1 = new JLabel(new ImageIcon("image1.jpeg")); //que gif, png et jpeg
|
||||
this.image2 = new JLabel(new ImageIcon("MICHEL.gif"));
|
||||
this.gsouris = new GestionSouris(this.image2, this);
|
||||
|
||||
this.frame.setSize(1000, 600);
|
||||
this.frame.setLocation(100,100);
|
||||
this.frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||
|
||||
this.image2.setHorizontalAlignment(JLabel.CENTER);
|
||||
this.frame.add(this.image2, BorderLayout.CENTER);
|
||||
|
||||
this.image2.addMouseListener(this.gsouris);
|
||||
this.image1.addMouseListener(this.gsouris);
|
||||
|
||||
|
||||
|
||||
this.frame.setVisible(true);
|
||||
}
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user