15 lines
276 B
Java
15 lines
276 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 instance = new Volume();
|
||
|
}
|
||
|
|
||
|
}
|