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);