18 lines
395 B
Java
18 lines
395 B
Java
|
package gui;
|
||
|
|
||
|
import javax.swing.JFrame;
|
||
|
|
||
|
public class MainWindow extends JFrame{
|
||
|
|
||
|
public MainWindow(){
|
||
|
JFrame fenetre = new JFrame();
|
||
|
fenetre.setTitle("Client");
|
||
|
fenetre.setSize(550, 200);
|
||
|
fenetre.setLocationRelativeTo(null);
|
||
|
fenetre.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||
|
fenetre.add(new Parameters());
|
||
|
fenetre.setVisible(true);
|
||
|
}
|
||
|
|
||
|
}
|