FXML

FXML is an XML-based user interface markup language created by Oracle Corporation for defining the user interface of a JavaFX application. FXML presents an alternative to designing user interfaces using procedural code, and allows for abstracting program design from program logic.

<?import javafx.scene.control.Label?>
<Label text="Hello, World!"/>

See also

References


Uses material from the Wikipedia article FXML, released under the CC BY-SA 4.0 license.