Comment mettre une grille dans une vox

        GridPane grid = new GridPane();
        grid.add(label,0,0);
        grid.add(textField,1,0);

        VBox box = new VBox();
        box.getChildren().addAll(txt,grid);
        root.getChildren().add(box);*/
Lazey Dude