Skip to content
amischler edited this page Sep 28, 2011 · 9 revisions

Stop coding forms: FXForm2 can do it for you!

FXForm2 is a library providing dynamic JavaFX 2.0 form generation.

Create your first form in 5 seconds:

Add FXForm2 to your project dependencies

You need to add the FXForm2 core library to your project dependencies: Add FXForm2 to your project dependencies

Get your FXForm!

MyBean myBean = new MyBean(); // get an instance of the bean to be edited
Node fxForm = new FXForm(myBean);  // create the FXForm node for your bean
root.getChildren.add(fxForm);  // add it to your scene graph

That's it!

What's next?

Clone this wiki locally