JavaFX如何更改ProgreesIndicator"完成"进度结束时的消息

时间:2014-04-02 18:06:00

标签: javafx progress-indicator

是否有任何可靠的方法来更改文本或为controls.properties设置系统区域设置?

1 个答案:

答案 0 :(得分:1)

这应该有效:

    progressIndicator.progressProperty().addListener((obs, oldValue, newValue) -> {
        if (newValue.doubleValue() >= 1.0) {
            Text doneText = (Text) progressBar.lookup(".percentage");
            doneText.setText("Finished");
        }
    });