Adding space between buttons in VBox

前端 未结 4 1423
迷失自我
迷失自我 2021-02-05 01:41

I have a collection of buttons:

VBox menuButtons = new VBox();
menuButtons.getChildren().addAll(addButton, editButton, exitButton);

I want to a

4条回答
  •  醉酒成梦
    2021-02-05 02:07

    VBox supports spacing:

    VBox menuButtons = new VBox(5);
    

    or

    menuButtons.setSpacing(5);
    

提交回复
热议问题