如何在窗格内加载fxml文件?
如果我们有一个那么包含2 s,第1个包含,第2个包含是空的,我们可以在这个2nd中加载其他fxml文件吗?Stage
Scene
Pane
Pane
Button
Pane
Pane
fxml1: VBox
|_Pane1-->Button
|_Pane2
///////////////
fxml2: Pane--> Welcome to fxml 2
"when we click the button load the fxml2 inside Pane2 of fxml1"
然后在单击后
====我在尝试后终于找到了这个作品!====谢谢你们
@FXML Pane secPane;
public void loadFxml (ActionEvent event) {
Pane newLoadedPane = FXMLLoader.load(getClass().getResource("/application/fxml2.fxml"));
secPane.getChildren().add(newLoadedPane);
}