What layout should I use?

I am designing a gui that contains a Combobox and a JSlider. Also I plotted many polygons which will be put in the center in the frame.Which layout should I use?Thanks
[188 byte] By [ardmorea] at [2007-11-27 10:05:38]
# 1

Probably a BorderLayout.

Create a panel for your comboBox and slider and add that panel to the North. Then aad the panel containing your polygons to the Center.

"How to Use Layout Manager"

http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.html

Each panel can use a different layout manager, to the "North" panel could then use a FlowLayout.

camickra at 2007-7-13 0:41:37 > top of Java-index,Desktop,Core GUI APIs...