你可以用BorderPane来做,即:
FXMLLoader loader = new FXMLLoader(getClass().getResource("contacts.fxml"));
HBox root = loader.load();
rootPane.setTop(root);
}
VBox没有.set(节点)方法。
答案 0 :(得分:0)
使用VBox
(以及许多其他Pane
s),您只需修改children
ObservableList
修改任何其他List
的方式。< / p>
E.g。
// add root as bottom-most child of rootPane
rootPane.getChildren().add(root);