Tagged Questions
2
votes
4answers
979 views
Java Swing: Vertical Layout with fixed width and variable height
I'm looking for a layout manager (or set of layout managers) that help me to arrange my components vertically. All components (buttons) should have the same width, bordered by the underlaying dialog ...
3
votes
2answers
97 views
Line up swing components by edges
Is it possible to line up swing components?
The components are in separate panels which both use flow layout. These two panels are in another panel which is using a grid layout.
As you can see ...
2
votes
2answers
504 views
Java Group layout, vertical layout issues
I am trying to make a two column, 3 row layout. Something along the lines of:
----------------------
| Username |Textbox| |
| Email |Textbox| |
----------------------
Yet even when I'm quite ...
2
votes
1answer
448 views
Vertical Aligning BoxLayout Spacing?
When using a BoxLayout that aligns vertically, how do you stop components from expanding as the containing JFrame grows, leaving the extra space at the bottom? Ive tried different layouts, and it just ...
2
votes
2answers
1k views
Java JLabel text in middle of vertical axis
I have a JLabel that contains variable text in a certain location in my GUI. The problem is that the text gets displayed at the bottom of the space where the JLabel is located. This does not convey ...
3
votes
1answer
730 views
Vertically centering text in HTML table cell in Java JLabel
I have an HTML table (styles with CSS) that is displayed in a JLabel. I would like the contents (a single, short line of text) of the cells to be both horizontally and vertically centered. Horizontal ...
3
votes
5answers
4k views
How to create vertical tabs in Java?
I would like to get the effect like if JTabbedPane would be turned 90 degrees counterclockwise (only tabs but not the content inside tabs). What is the best way to implement that in Java?
1
vote
1answer
675 views
Java GUI Vertical ALIGN
So, I have 2 JPanels of different Height. I want to vertical align them both to the top. What type of container should I use and how should I add them so they are both aligned to the top, not ...
0
votes
1answer
937 views
JButton vertical text alignment
Hi I am making a project for college for a gallery, I have the receipt in a JList and want to put some buttons at the side of it but I am picky and want the text on the JButtons to be vertical. At the ...
1
vote
2answers
949 views
Problem with alignment of JButtons
This might be a very stupid question posted at the dead of the night. I am trying to create two JButtons placed one on top of the other. However for some reason, it is not getting properly aligned. ...
0
votes
3answers
8k views
Vertical Align of GridBagLayout Panel on BorderLayout.CENTER
What I'm trying to do is place a GridBagLayout Panel on the center of my BorderLayout and vertical align the GridBagLayout panel ( /and text on it ) to the TOP ( because it automaticly puts it in the ...