Files
DEV/DEV2.1/TP10/05_Degres/Fenetre.java
Simoes Lukas cf33623a5d TP Exceptions
2025-03-12 17:10:44 +01:00

13 lines
313 B
Java

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