I am using JavaFX for UI.How to set Vbox layout's size to window size? I tried the below code,but couldnot view the components added in vbox.
VBox vbox = new VBox();
vbox.setPadding(new Insets(10, 10, 10, 10));
vbox.setSpacing(10);
|
I am using JavaFX for UI.How to set Vbox layout's size to window size? I tried the below code,but couldnot view the components added in vbox.
|
|||
|
|
That's correct code. Did you put your
|
|||
|
|
Try this example:
|
|||
|
|