📜  javafx listview 在 vbox 之后无法更改大小 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:44.960000             🧑  作者: Mango

代码示例1
VBox vbox = new VBox();
     ListView list = new ListView();
     VBox.setVgrow(list, Priority.ALWAYS);
     vbox.getChildren().addAll(new Label("Names:"), list);