-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainGrideBagLayout.java
66 lines (52 loc) · 2.04 KB
/
MainGrideBagLayout.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
/**
* MainGrideBagLayout
*/
public class MainGrideBagLayout extends JFrame implements ActionListener {
MainGrideBagLayout(){
// Créez un nouveau conteneur, par exemple, un JPanel
JPanel panel = new JPanel();
JPanel panel1 = new JPanel();
JTextField textField = new JTextField();
// Définissez le gestionnaire de mise en page sur GridBagLayout
panel.setLayout(new GridBagLayout());
panel.setActionMap(null);
panel.set
// Ajoutez des composants au panneau avec les contraintes GridBagLayout
GridBagConstraints gbc = new GridBagConstraints();
GridBagConstraints gbc1 = new GridBagConstraints();
GridBagConstraints gbc2 = new GridBagConstraints();
GridBagConstraints gbc3 = new GridBagConstraints();
// Exemple d'ajout d'un bouton au panneau
JButton bouton = new JButton("Menu");
//gbc.gridx = 0; // Position en colonne 0
//gbc.gridy = 0; // Position en ligne 0
JButton bouton1 = new JButton("Parameter");
//gbc1.gridx = 1; // Position en colonne 0
//gbc1.gridy = 1; // Position en ligne 0
JButton bouton2 = new JButton("Login");
//gbc2.gridx = 2; // Position en colonne 0
//gbc2.gridy = 2; // Position en ligne 0
JButton bouton3 = new JButton("Add");
//gbc3.gridx = 3; // Position en colonne 0
//gbc3.gridy = 3; // Position en ligne 0
panel.add(bouton, gbc);
panel.add(bouton1, gbc);
panel.add(bouton2, gbc);
panel.add(bouton3, gbc);
// Ajoutez le panneau à la fenêtre
add(panel);
//add(panel1);
// Configuration de la fenêtre
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(300, 200);
setTitle("Ma Fenetre");
setLocationRelativeTo(null);
setVisible(true);
}
public static void main(String[] args) {
new MainGrideBagLayout();
}
}