我使用手风琴控制。根据标题窗格,我需要将fxml文件加载到anchorPane中。所以我有两个部分:一个用于手风琴,另一个用于anchorPane,根据点击显示内容。
@FXML
private StackPane tmpPane;
@FXML
private void itemMembres(MouseEvent event) throws IOException {
tmpPane.getChildren().add((Node)FXMLLoader.load(getClass().getResource("/view/test.fxml")));
}
tmpPane是视图中的一个anchorPane。
感谢
答案 0 :(得分:7)
我找到了解决方案
通过提取fxml文件来创建节点
使用{All}}的setAll
AnchorPane