使用 Java8 禁用红色 'X' 按钮关闭整个 JavaFX 程序?

Disabling red 'X' button from closing entire JavaFX program w/ Java8?

我 运行 遇到了一些问题。我正在为客户创建一个程序。在程序中,我实现了一个专用的 'close/shut down' 按钮 - 它需要密码才能正确关闭。但是另一种(并且不太安全)关闭程序的方法是点击红色关闭或 'X' 按钮:右上角 (Windows) 或左上角 (Mac)。

我不希望红色 x 按钮实际关闭整个程序。我想知道的是:是否可以完全禁用红色 'x' 按钮来关闭整个程序?如果可能的话,有人可以为此提供代码吗?

我正在使用的是:IntelliJ IDEA(终极版),JavaFX with Java 8,Dev。语言:Java

向舞台的 onCloseRequest 事件添加事件处理程序。这允许您通过使用事件并执行您自己的关闭过程来防止 window 关闭:

private void shutdown(Stage mainWindow) {
    // you could also use your logout window / whatever here instead
    Alert alert = new Alert(Alert.AlertType.NONE, "Really close the stage?", ButtonType.YES, ButtonType.NO);
    if (alert.showAndWait().orElse(ButtonType.NO) == ButtonType.YES) {
        // you may need to close other windows or replace this with Platform.exit();
        mainWindow.close();
    }
}

@Override
public void start(Stage primaryStage) {
    primaryStage.setOnCloseRequest(evt -> {
        // prevent window from closing
        evt.consume();

        // execute own shutdown procedure
        shutdown(primaryStage);
    });

    StackPane root = new StackPane();

    Scene scene = new Scene(root, 100, 100);

    primaryStage.setScene(scene);
    primaryStage.show();
}