Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您可以使用 BorderPane 来做到这一点,即:
FXMLLoader loader = new FXMLLoader(getClass().getResource("contacts.fxml")); HBox root = loader.load(); rootPane.setTop(root); }
VBox 没有 .set(node) 方法。
使用 a VBox(以及许多其他Panes),您只需按照children ObservableList修改任何其他 的方式进行修改List。
VBox
Pane
children
ObservableList
List
例如
// add root as bottom-most child of rootPane rootPane.getChildren().add(root);