JavaRanch » Java Forums »
Java »
Swing / AWT / SWT
| Author |
Componet Allignment
|
Chase Becicka
Greenhorn
Joined: Feb 16, 2004
Posts: 23
|
|
I am having a problem being able to get my botton Jbuttons to allign properly, they are just lined up in a row at the bottom of my JFrame but I want it to appear more like NextCust NextAcct Search Add Update Delete Exit
|
 |
Craig Wood
Ranch Hand
Joined: Jan 14, 2004
Posts: 1535
|
|
What we can do to get this kind of layout Options and possibilities: 1 — add the buttons in each row to a separate JPanel with FlowLayout and add these two JPanels to buttonPanel with a GridLayout(2,0) or a BorderLayout (using north and south sections) 2 – you could use the two JPanels but try a GridLayout in each JPanel instead of FlowLayout. One of the GridLayout constructors has an hgap and vgap option. 3 — again with the two JPanels you could try a GridBagLayout or a BoxLayout in each one. These two layout managers are more advanced...
|
 |
 |
|
|
subject: Componet Allignment
|
|
|
|