如何在JFXComboBox中更改文本的颜色?

时间:2017-06-21 16:27:57

标签: javafx javafx-8

当选择项目

时,我在JFXComboBox中的文字颜色有问题

enter image description here

3 个答案:

答案 0 :(得分:1)

下面应该有效。取自here

.combo-box .cell {
     -fx-text-fill: white;
}

答案 1 :(得分:0)

如果您想要更改视觉,只需选择一个项目:

.combo-box > .cell {
     -fx-text-fill: white;
}

答案 2 :(得分:0)

您可以尝试以下CSS样式:

.jfx-combo-box .cell {
    -fx-text-fill: #FFF; /* change selected text (item) color */
    -fx-background-color: #30425d; /* change background color */
}