menuItem が選択されているときに、現在のシーンを閉じて別のシーンを開こうとすると問題が発生します。私のメインステージは次のようにコーディングされています:
public void start(Stage primaryStage) throws Exception {
primaryStage.setTitle("Shop Management");
Pane myPane = (Pane)FXMLLoader.load(getClass().getResource
("createProduct.fxml"));
Scene myScene = new Scene(myPane);
primaryStage.setScene(myScene);
primaryStage.show();
}
次に、createProduct.fxml 内で、menuItem が onclick の場合、これを実行します。
public void gotoCreateCategory(ActionEvent event) throws IOException {
Stage stage = new Stage();
stage.setTitle("Shop Management");
Pane myPane = null;
myPane = FXMLLoader.load(getClass().getResource("createCategory.fxml"));
Scene scene = new Scene(myPane);
stage.setScene(scene);
stage.show();
}
createCategory.fxml を開きます。ただし、createProduct.fxml である前のパネルは閉じません。これを行うために stage.close() と呼ばれるものがあることは知っていますが、最初からメインからシーンを渡していないため、どこに実装すればよいかわかりません。これをどのように修正すればよいのだろうか。
前もって感謝します。