In JavaFX, if I have a scene with 2 VBox
elements and each VBox
has multiple Label
in it.
If I set the top VBox
to invisible, why does the bottom VBox
not move up the scene where the top VBox
was ?
The VBox
is invisible but I would expect the other objects to move into its place.
I am using FXML to load my controls.
VBox
is just invisible and notremoved
from its parent. – Hurlburt