set up javafx scene with multiple nodes -


i trying set javafx scene, have failed miserable. trying per attached photo.

enter image description here

i have tried set gridpane , position gridpane withing can set boxes , labels not working properly.

i not want use fxml.

can guys recommend how go set up.

the javafx scenebuilder tool create layouts 1 want have. take @ official website. tool creates fxml file can load in applications start() method using:

@override public void start(stage stage) throws exception {     parent root = fxmlloader.load(getclass().getresource("application.fxml"));     scene scene = new scene(root);     stage.setscene(scene);     stage.show(); } 

another resource can familiar scenebuilder #java , #oraclelearning channels on youtube.


Comments

Popular posts from this blog

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -