1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JButton;
public class Fenetre extends JFrame {
private JPanel pan = new JPanel();
private JButton bouton = new JButton("Mon bouton");
public Fenetre(){
this.setTitle("Application de Programmation Dynamique : ");
this.setSize(800, 600);
this.setResizable(false); //On interdit la redimensionnement de la fenêtre
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
} |
Partager