如何设置组合框的文本颜色?

时间:2019-03-26 12:21:22

标签: javafx combobox

我正在尝试设置组合框的文本颜色。

我尝试过的代码 min-height

1 个答案:

答案 0 :(得分:3)

尝试

.combo-box .list-cell 
{
    -fx-background: white;
    -fx-background-color: transparent;
    -fx-text-fill: red;
}

enter image description here