是否有任何可靠的方法来更改文本或为controls.properties设置系统区域设置?
答案 0 :(得分:1)
这应该有效:
progressIndicator.progressProperty().addListener((obs, oldValue, newValue) -> {
if (newValue.doubleValue() >= 1.0) {
Text doneText = (Text) progressBar.lookup(".percentage");
doneText.setText("Finished");
}
});