|
-
September 18th, 2000, 05:32 AM
#1
table layout needed
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.
-
September 19th, 2000, 05:20 AM
#2
Re: table layout needed
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|