Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JavaFX でカスタムの closeoperation を設定する方法はありますか? これはスイングから知っていますが、JavaFX では見つかりませんでした。ここで [X] を押してウィンドウを閉じると、自動的に閉じます。
onCloseRequest次のプロパティを使用できます。
onCloseRequest
stage.setOnCloseRequest(new EventHandler<WindowEvent>() { @Override public void handle(WindowEvent t) { System.out.println("CLOSING"); } });
Platform.exit()コードで呼び出す場合、これは機能しないことに注意してください。
Platform.exit()