关闭 fxml 窗口 by code, javafx
2022-08-31 14:36:11
我需要通过控制器中的代码关闭当前的fxml窗口
我知道 stage.close() 或 stage.hide() 在 fx 中执行此操作
如何在fxml中实现它?我试过了
private void on_btnClose_clicked(ActionEvent actionEvent) {
Parent root = FXMLLoader.load(getClass().getResource("currentWindow.fxml"));
Scene scene = new Scene(root);
Stage stage = new Stage();
stage.setScene(scene);
stage.show();
}
但它不起作用!
所有帮助将不胜感激。谢谢!