From fcdffb82f08609c0bad5bbb430fb8fd1e9bbbc7f Mon Sep 17 00:00:00 2001 From: martins Date: Thu, 13 Oct 2022 23:19:58 +0200 Subject: [PATCH] ok --- .../src/fr/iutfbleau/projetAgile/View/Menu.java | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/projetAgile/src/fr/iutfbleau/projetAgile/View/Menu.java b/projetAgile/src/fr/iutfbleau/projetAgile/View/Menu.java index e282e7d..17cf874 100644 --- a/projetAgile/src/fr/iutfbleau/projetAgile/View/Menu.java +++ b/projetAgile/src/fr/iutfbleau/projetAgile/View/Menu.java @@ -1,19 +1,15 @@ package fr.iutfbleau.projetAgile.View; import java.awt.*; -import javax.swing.JFrame; +import javax.swing.JPanel; import javax.swing.JLabel; import fr.iutfbleau.projetAgile.Controller.*; -public class Menu extends JFrame{ +public class Menu extends JPanel{ public Menu(){ super(); - this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); - this.setLocation(0,0); - this.setSize(1280,720); - (this.getContentPane()).setBackground(new Color(31,31,31)); - + this.setBackground(new Color(31,31,31)); GridBagLayout gbl=new GridBagLayout(); this.setLayout(gbl); GridBagConstraints gbc=new GridBagConstraints(); @@ -69,7 +65,6 @@ public class Menu extends JFrame{ this.add(CoD, Menu.GridBagConstraintsRetour(0, 3)); this.add(minecraft, Menu.GridBagConstraintsRetour(1, 3)); this.add(puzzle, Menu.GridBagConstraintsRetour(2, 3)); - this.setVisible(true); } public static GridBagConstraints GridBagConstraintsRetour(int collonne, int ligne){ GridBagConstraints gbc=new GridBagConstraints();