JavaFX:设置 ProgressIndicator 文本标签的颜色

JavaFX: Set the color of a ProgressIndicator's text label

我想更改附加到 ProgressIndicator 的文本标签的颜色,因为默认文本颜色是黑色,而我的背景也是黑色。

到目前为止我试过这个:

ProgressIndicator pg = new ProgressIndicator(0);
pg.setStyle("-fx-foreground-color: #FF00000");

但似乎没有用。

重要提示:我在确定模式下使用 ProgressIndicator。

未测试,但根据documentation,你应该可以做到

.progress-indicator .percentage {
    -fx-fill: #ff0000 ;
}

在外部样式中 sheet。

(请注意,您的颜色规格中的数字似乎也太多了。)