我想更改附加到ProgressIndicator的文本标签的颜色,因为默认文本颜色是黑色,而我的背景也是黑色。
到目前为止,我已经尝试过这个:
ProgressIndicator pg = new ProgressIndicator(0);
pg.setStyle("-fx-foreground-color: #FF00000");
但它似乎没有效果。
需要注意的重要事项:我在确定模式中使用ProgressIndicator。
答案 0 :(得分:2)
未经测试,但根据documentation,您应该可以
.progress-indicator .percentage {
-fx-fill: #ff0000 ;
}
在外部样式表中。
(注意你的颜色规格似乎也有太多的数字。)