user285594
user285594

Reputation:

Is there any JavaFX gui builder?

NetBeans for JavaFX I tried, but its really not stable, lot of things getting often changed and also it does not shift with NetBeans nightly builds. Also I am afraid will JavaFX remain or it will be deprecated by Oracle.

So, I was thinking if there is something else which has more advanced way of doing JavaFX UI designing, as an alternative tools of NetBeans for JavaFX.

Question: Is there any good JavaFX gui builders which generates readable code, with less mess?

Thanks in advance.

ex: http://www.reportmill.com/jfx/

Upvotes: 3

Views: 8087

Answers (1)

Valentin Vrinceanu
Valentin Vrinceanu

Reputation: 679

You can try JavaFX Scene Builder to create visualy your FXML files. FXML files are the "UI" of your application! JavaFX Scene Builder is only for JavaFX 2.0!

Here is the documentation: http://docs.oracle.com/javafx/scenebuilder/1/user_guide/jsbpub-user_guide.htm

Upvotes: 5

Related Questions