jedem Container
ist ein LayoutManager
zugeordnet:
fließende Anordnung (FlowLayout):
setLayout (new FlowLayout ()); // ist Default for (int k = 0; k < 100; k++) { add (new Button ( "B" + Integer.toString (k) )); }Beachte Wirkung von Window-Resize!
Gitter-Anordnung (GridLayout)
setLayout (new GridLayout (10,0));