Questions tagged [springlayout]

SpringLayout is a flexible LayoutManager in the Java Programming Language. It lets you specify precise relationships between the edges of components under its control.

SpringLayout is a flexible LayoutManager designed for use by GUI builders. It lets you specify precise relationships between the edges of components under its control. For example, you might define that the left edge of one component is a certain distance (which can be dynamically calculated) from the right edge of a second component. SpringLayout lays out the children of its associated container according to a set of constraints.

Relevant Tutorials:

62 questions
0
votes
2 answers

Serialize a class using SpringLayout (Java)

I recently started developing in Java and have enjoyed the experience a lot. The default Java package comes loaded with useful things, and having the Swing package has been a great help creating a GUI. I decided to use SpringLayout for my…
MandM
  • 3,293
  • 4
  • 34
  • 56
-1
votes
1 answer

JPanel won't display when I set a spring layout

I have a JFrame with 3 JPanel containers, one on top, the other on the left side and the last one is on the center taking up the rest of the frame. The problem is when I try to set a SpringLayout for the side panel, it won't display on the panel.…
user4450842
1 2 3 4
5