Developpement/23DEV1.1/TPS2/TP01/Evènements/Evènement2/TestPlaylist.java

18 lines
397 B
Java
Raw Permalink Normal View History

2024-12-09 11:53:11 +01:00
import javax.swing.*;
import java.awt.*;
public class TestPlaylist
{
public static void main(String[] args)
{
JFrame fenetre = new JFrame();
fenetre.setSize(1000, 300);
fenetre.setLocation(100, 100);
fenetre.setBackground(Color.GREY);
fenetre.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Playlist p = new Playlist();
p.add();
fenetre.setVisible(true);
}
}