Ajout de la barre menu
This commit is contained in:
@@ -9,6 +9,7 @@ public class AppThinkerWindow extends JFrame {
|
||||
* @author V.BOULANGER
|
||||
*/
|
||||
public AppThinkerWindow(){
|
||||
//Paramétrage de la fenêtre
|
||||
this.setTitle("AppThinker");
|
||||
this.setExtendedState(JFrame.MAXIMIZED_BOTH);
|
||||
Image img = null;
|
||||
@@ -18,6 +19,9 @@ public class AppThinkerWindow extends JFrame {
|
||||
this.setLocation(0, 0);
|
||||
this.setSize(500, 500);
|
||||
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||
}
|
||||
|
||||
//Ajout du menu à la fenêtre
|
||||
AppThinkerMenuBar menu = new AppThinkerMenuBar();
|
||||
this.setJMenuBar(menu);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user