Top "Layout-manager" questions

Layout Managers are a collection of standard Java based layout managers for AWT & Swing components.

Eclipse WindowBuilder, overlapping JPanels

I'm attempting to overlap JPanel instances. Put a panel directly on another, in the exact same position and exact size. …

java swing overlay layout-manager windowbuilder
BorderLayout not working

I cannot get BorderLayout to work. I want the cancelbutton to be positioned at the bottom, but it doesn't work. …

swing layout-manager border-layout java
Making text in a JLabel dynamically resize

I have an array of Java Swing JLabels. The user of my program can add a new JLabel to the …

java swing jlabel layout-manager
Get height of multi line text with fixed width to make dialog resize properly

I want to create a dialog that contains some kind of text element (JLabel/JTextArea etc) that is multi lined …

java swing layout-manager
How to move components to next line in FlowLayout?

I am adding components in JPanel which is set as FlowLayout, they are not moving on next line even there …

java swing layout-manager flowlayout