更改tableview多选javafx

时间:2018-06-14 14:36:24

标签: javafx colors tableview row

我想在多选模式下更改TableView行的颜色。我使用setStyle("-fx-selection-bar: red;")在单选模式下设置颜色。

我尝试setStyle("-fx-selection-bar-non-focused: salmon;"),但是当代码表未聚焦时,此代码会更改选择的颜色。

提前致谢

1 个答案:

答案 0 :(得分:1)

您在寻找-fx-control-inner-background吗?

.table-row-cell {
    -fx-control-inner-background: orange;
    -fx-selection-bar: red;
}

enter image description here