单击JavaFX中的“警报”的“确定”按钮,打开另一个窗口

时间:2018-07-29 17:19:51

标签: javafx alert eventhandler

private void showAlert(Alert.AlertType alertType, Window owner, String title, String message) {
        Alert alert = new Alert(alertType);
        alert.setTitle(title);
        alert.setHeaderText(null);
        alert.setContentText(message);
        alert.initOwner(owner);
        //alert.show();

        Optional<ButtonType> result = alert.showAndWait();
        if ((result.isPresent()) && (result.get() == ButtonType.OK))
        {
            System.out.println("ALL OK..!");
            //Open another window on clicking the OK button

        }
    }

在此特定部分上,单击“确定”按钮,我想打开另一个窗口。 通常使用

定义事件的Button类型。
buttonName.setOnAction( event -> {
      //Action to do
    } );

现在如何将该OK定义为按钮类型?

0 个答案:

没有答案