Forums Register Login

GridBag Layout

+Pie Number of slices to send: Send
I am having 3 components JList,SelectionButton ,Jlist in horizontal order.Both JList are of equal size and selectionButton is centered and width is small..Looks fine even when resized..
The problem comes when i add items to the first Jlist.This becomes smaller and the last JList increases it's width ..
After selection of items from left to right still the size remains constant.How to solve this problem.At any point,both Jlist should be of equal width..I don't want to use setPreferredSize().

Constarints for the JList used
1)Constarints for first JList
GridBagConstraints gbb = new GridBagConstraints();
gbb.gridx=0;
gbb.gridy=0;
gbb.gridwidth=4;
gbb.weightx=1.0;
gbb.weighty=1.0;
gbb.fill = GridBagConstraints.BOTH;
2)Constraints for second JList
gbb.gridx=6;
gbb.gridy=0;
gbb.gridwidth=4;
gbb.weightx=1.0;
gbb.weighty=1.0;
gbb.fill = GridBagConstraints.BOTH;
Thanks
Regards,
silva.
+Pie Number of slices to send: Send
Change the gridBagConstraints.fill to NONE. This will prevent the component from resizing from its original shape. Also, it's good to set weightx and weighty to 100 first.
Do not threaten THIS beaver! Not even with this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 1031 times.
Similar Threads
Scroll pane problem
GridBagLayout resize issue
GridBagLayout. and GridBagConstraints..Help me!!
Problem with gridbaglayout
horizontal weight of a component
More...

All times above are in ranch (not your local) time.
The current ranch time is
Apr 16, 2024 01:43:46.