antsite Je me souviens | j'ai pas mis le code de création des objets (JTextFields,...)
Code :
- GridBagLayout gridBag = new GridBagLayout();
- GridBagConstraints c = new GridBagConstraints();
- setLayout(gridBag);
- c.fill = GridBagConstraints.BOTH;
- c.insets = new Insets(2, 2, 2, 2);
- add(new JLabel("Titre :", SwingConstants.RIGHT), c);
- add(titre, c);
- c.gridwidth = GridBagConstraints.REMAINDER;
- add(radios, c);
- c.gridwidth = 1;
- add(new JLabel("Forme :", SwingConstants.RIGHT), c);
- add(fPolie, c);
- c.gridwidth = GridBagConstraints.REMAINDER;
- add(fCourante, c);
- c.gridwidth = 1;
- add(new JLabel("Note :", SwingConstants.RIGHT), c);
- c.gridwidth = GridBagConstraints.REMAINDER;
- add(sNote, c);
- c.gridwidth = 1;
- add(pExemples, c);
- c.gridwidth = GridBagConstraints.REMAINDER;
- add(sExemples, c);
- c.gridwidth = GridBagConstraints.REMAINDER;
- add(p, c);
|
bon voila en gros le code, sachant que j'ai modifié des trucs depuis le début du post mais en gros tout est la, sExemples & sNotes sont des JScrollPane. |