views:

155

answers:

1

Is there an open source Java swing GUI builder that uses MiGlayout as it's layout manager? I've been trying to learn to make Swing GUI's by hand using MiGlayout but feel it would be easier to learn if the code is auto-generated.
Note: I'm not using the GUI builder for my applications, just to see how the code is generated and then applying (what I learned) and optimizing that code in my Java applications. So I'm not specifically looking for IDE dependent Swing GUI builders.

+1  A: 

I haven't tried it, but it looks like you can add MiGLayout to the NetBeans GUI builder. The article Registering MigLayout in NetBeans, which refers to this project, shows how. The generated code should be visible in a code fold.

trashgod
@Trashgod, thanx, I'll look into that
A.Donahue