最近发布的JDK 1.8.0_40添加了对JavaFX对话框,警报等的支持。例如,要显示确认对话框,可以使用alert类:
alert alert = new alert(alertType./confirm/iATION, "Delete " + selection + " ?", ButtonType.YES, ButtonType.NO, ButtonType.CANCEL);alert.showAndWait();if (alert.getResult() == ButtonType.YES) { //do stuff}以下是此版本中添加的类的列表:
javafx.scene.control.Dialog
javafx.scene.control.alert
javafx.scene.control.TextInputDialog
javafx.scene.control.ChoiceDialog



