28 lines
598 B
Java
28 lines
598 B
Java
![]() |
/*Emmanuel SRIVASTAVA-TIAMZON*/
|
||
|
|
||
|
import java.awt.*;
|
||
|
import javax.swing.*;
|
||
|
|
||
|
public class Fenetre extends JFrame {
|
||
|
public Fenetre() {
|
||
|
super("Compteurs");
|
||
|
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||
|
this.setSize(500,500);
|
||
|
this.setLocation(500,250);
|
||
|
|
||
|
Compteurs image6 = new Compteurs();
|
||
|
this.add(image6);
|
||
|
|
||
|
JButton up = new JButton("up");
|
||
|
up.setSize(50,50);
|
||
|
up.setLocation(this.getWidth()/2, this.getHeight()/4);
|
||
|
|
||
|
JButton down = new JButton("down");
|
||
|
down.setSize(50,50);
|
||
|
down.setLocation(this.getWidth()/2, this.getHeight()*4);
|
||
|
|
||
|
this.add(up);
|
||
|
this.add(down);
|
||
|
|
||
|
}
|
||
|
}
|