Files
DEV/DEV.2.1/TP/TP9-Event..suite/1./Mafenetre.java
Emmanuel Srivastava 9e107c8657 update
2025-03-12 13:06:52 +01:00

16 lines
294 B
Java

import javax.swing.*;
import java.awt.*;
public class Mafenetre extends JFrame {
public Mafenetre() {
super("Volume");
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setSize(697,156);
this.setLocation(500,250);
Volume volume = new Volume();
this.add(volume);
}
}