Alex Bliskovsky
Alex Bliskovsky

Reputation: 6293

Using netbeans GUI designer to design for projects outside of netbeans

I'm writing a plugin for another Java program in which I need to create a GUI. I've got the GUI designed in Netbeans, but I would like to put all of the elements in a panel instead of a frame. Any ideas?

Thanks

Upvotes: 0

Views: 547

Answers (1)

brian_d
brian_d

Reputation: 11385

This file type exists in the menu at

File >> New File >> Java >> Swing GUI Forms >> JPanel Form

The sources auto generated should be specific to swing, not netbeans. The .form file will probably only work with the Netbeans Matisse GUI builder though.

Upvotes: 2

Related Questions