I need an layout manager that lays componets out like HTML's <table> control.
java.awt.GridLayout seems is not match as width-of-each-component is the width-of-widest-component.
Printable View
I need an layout manager that lays componets out like HTML's <table> control.
java.awt.GridLayout seems is not match as width-of-each-component is the width-of-widest-component.
Hi
Its possible to do that with a FlowLayout(if each
Object is equal in size to the cell above and below it).
The FlowLayout lays each component from left to
right at its intrinsic size.
Also a GridBagLayout is possible, but there is much more fiddling involved in getting a GridBagLayout just right.
Phill