我想知道可以使用哪个CSS类为表格单元格列着色。 我想将列和单元格生成为Java代码。 我想要这样的东西:
."the class cell"
{
-fx-background-color:black;
}
谢谢大家。
答案 0 :(得分:0)
将样式类添加到TableColum
。这会将样式类添加到此列的所有TableCell
中:
column.getStyleClass().add("colored-column");
.table-cell.colored-column {
-fx-background-color: black;
}