Quantcast
Viewing latest article 1
Browse Latest Browse All 6

Answer by meverett for Java gui layout

I'd suggest MigLayout, it's very simple and very powerful.

In this case all you need to do is

JPanel p = new JPanel(new MigLayout("wrap")); p.add(new JLabel());p.add(new JTextField());p.add(new JLabel());

etc..


Viewing latest article 1
Browse Latest Browse All 6

Trending Articles