如何在 JavaFX 8 警报对话框中更改是/否按钮的文本
我有这个代码片段:
Alert alert =
new Alert(AlertType.WARNING,
"The format for dates is year.month.day. " +
"For example, today is " + todayToString() + ".",
ButtonType.OK,
ButtonType.CANCEL);
alert.setTitle("Date format warning");
Optional<ButtonType> result = alert.showAndWait();
if (result.get() == ButtonType.OK) {
formatGotIt = true;
}
上面,我请求两个标题为“是”和“否”的按钮。但是,我希望将它们都更改。