13 lines
313 B
Java
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);
|
||
|
}
|
||
|
}
|