JavaFX Scene Builder is a visual layout tool that lets users quickly design JavaFX application user interfaces, without coding. It is used to generate FXML files.
JavaFX Scene Builder is a visual layout tool that lets users quickly design JavaFX application user interfaces, without coding. Users can drag and drop UI components to a work area, modify their properties, apply style sheets, and the FXML code for the layout that they are creating is automatically generated in the background. The result is an FXML file that can then be combined with a Java project by binding the UI to the application’s logic.
From a Model View Controller (MVC) perspective:
Download Scene Builder most recent version from Gluon's website, selecting the installer for your platform or the executable jar.
With the installer downloaded, double click to install Scene Builder on your system. An updated JRE is included.
Double click on the Scene Builder icon to run it as standalone application.
IDE Integration
While Scene Builder is a standalone application, it produces FXML files that are integrated with a Java SE project. When creating this project on an IDE, it is convenient to include a link to the Scene Builder path, so FXML files can be edited.
The Scene Builder project was created using JavaFX by Oracle and it is open source within the OpenJFX project.
Oracle provided binaries, up until Scene Builder v 2.0, including only JavaFX features before the release of Java SE 8u40, so new features like the Spinner
controls are not included.
Gluon took over the binary releases distribution, and an up-to-date Scene Builder 8+ can be downloaded for every platform from here.
It includes the latest changes in JavaFX, and also recent improvements and bug fixes.
The open source project can be found here where issues, feature requests and pull requests can be created.
The Oracle legacy binaries still can be downloaded from here.
Scene Builder tutorials can be found here:
FXML tutorials can be found here.
Gluon has fully documented the new feature that allows importing third party jars with custom controls, using the Library Manager (available since Scene Builder 8.2.0).
Tag related: SceneBuilder