1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| public FrmMain() {
super();
initialize();
}
private void initialize() {
// Frame properties
this.setTitle("Smart Time Manager");
this.setSize(800, 600);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setIconImage(new ImageIcon(FrmMain.class.getResource("/stm/gui/resources/iconSTM.png")).getImage());
this.setVisible(true);
// Desktop pane for the internal frames
this.desktopPane.setBackground(Color.GRAY);
this.setContentPane(this.desktopPane);
// Menu bar
this.setJMenuBar(createMenuBar());
} |
Partager