我正在尝试在JavaFX中创建一个黑白ScrollPane.我已经创建了一个CSS文件,非常好用.除了这个小方块:
无论我尝试什么,我都无法将其变黑.这是我的CSS文件:
.scroll-pane { -fx-background-color: black; } .scroll-bar:horizontal, .scroll-bar:vertical{ -fx-background-color:transparent; } .increment-button, .decrement-button { -fx-background-color: transparent; -fx-border-color: transparent; } .scroll-bar:horizontal .track, .scroll-bar:vertical .track{ -fx-background-color: transparent; -fx-border-color: transparent; -fx-background-radius: 0em; } .scroll-bar:horizontal .thumb, .scroll-bar:vertical .thumb { -fx-background-color: white; -fx-background-radius: 5em; }
有没有办法改变这个方块的颜色?先感谢您!
只需使用所需的颜色添加以下选择器:
.scroll-pane > .corner { -fx-background-color: black; }