gpt4 book ai didi

启用排序时 JavaFX Tableview 标题颜色

转载 作者:行者123 更新时间:2023-12-02 01:50:57 24 4
gpt4 key购买 nike

我正在尝试更改标题的颜色,但每次我通过单击其中一个列标题对行进行排序时,它都会变成这样:

enter image description here

如何将“排序箭头”背景绘制为蓝色,以便整个标题变为蓝色,箭头变为白色?感谢您的帮助。

编辑 1

通过使用@xtractic代码,我设法得到了我想要的东西:

enter image description here

最佳答案

这里有一些有用的 CSS 可以帮助您:

/** color everything under the column header */
.table-view .column-header * {
-fx-background-color: blue;
}

/** color the arrow */
.table-view .column-header .arrow {
-fx-background-color: black;
}

/** color the column header text */
.table-view .column-header .label {
-fx-text-fill: white;
}

/** add slight dividers between headers */
.table-view .column-header {
-fx-border-color: white;
-fx-border-width: .1
}

/** color the scroll bar background and thumb */
.table-view .scroll-bar {
-fx-background-color: white;
}
.table-view .scroll-bar .thumb {
-fx-background-color: blue;
}

关于启用排序时 JavaFX Tableview 标题颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52995851/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com