15 lines
372 B
Java
15 lines
372 B
Java
|
|
import javax.swing.*;
|
||
|
|
|
||
|
|
public class Test {
|
||
|
|
public static void main(String[] args) {
|
||
|
|
JFrame fenetre = new JFrame();
|
||
|
|
fenetre.setSize(1500, 1050);
|
||
|
|
fenetre.setLocation(150, 30);
|
||
|
|
fenetre.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||
|
|
|
||
|
|
Affiche aff = new Affiche();
|
||
|
|
fenetre.add(aff);
|
||
|
|
|
||
|
|
fenetre.setVisible(true);
|
||
|
|
}
|
||
|
|
}
|