Caused by: java.lang.ClassNotFoundException: javafx.scene.control.HBox
You have to change the import of the fxml file (musicals.fxml
) from
<?import javafx.scene.control.HBox ?>
to:
<?import javafx.scene.layout.HBox ?>
Caused by: java.lang.ClassNotFoundException: javafx.scene.control.HBox
You have to change the import of the fxml file (musicals.fxml
) from
<?import javafx.scene.control.HBox ?>
to:
<?import javafx.scene.layout.HBox ?>