Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テキストを変更したり、controls.properties のシステム ロケールを設定したりする信頼できる方法はありますか?
これはうまくいくはずです:
progressIndicator.progressProperty().addListener((obs, oldValue, newValue) -> { if (newValue.doubleValue() >= 1.0) { Text doneText = (Text) progressBar.lookup(".percentage"); doneText.setText("Finished"); } });