Files
DEV/DEV2.1/TP11/01_Image/Fenetre.java
2025-03-19 10:18:41 +01:00

12 lines
281 B
Java

import java.awt.*;
import javax.swing.*;
public class Fenetre extends JFrame {
public Fenetre() {
this.setSize(768, 1024);
this.setLocation(100, 100);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setLayout(new GridLayout(1, 1));
this.add(new Image());
}
}