Javafx在当前窗口中打开新的fxml文件

时间:2017-03-19 17:40:20

标签: javafx

如何在当前窗口中打开另一个fxml文件,例如

      @FXML
 private void LogInButton()
{
    try {
        FXMLLoader fxmlLoader = new    FXMLLoader(getClass().getResource("logIn.fxml"));
        Parent root1 = (Parent) fxmlLoader.load();
        Stage stage = new Stage();
        stage.setScene(new Scene(root1));
        stage.show();

    } catch(Exception e) {
        e.printStackTrace();
    }
}

这是我的按钮但是当我使用它时,它会打开一个新的窗口 我该怎么做才能交换fxml文件

0 个答案:

没有答案