Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试更改 JavaFX 2.2 中滑块的刻度颜色,但有点短 - 我在滑块上找不到任何声称这样做的 CSS 属性,我也找不到任何方法似乎也这样做的滑块(似乎有一个用于格式化刻度标签的属性,但不是标记本身。)
有没有办法,还是我自己画的?
将此样式描述用于刻度和蓝色:
.slider .axis .axis-tick-mark, .slider .axis .axis-minor-tick-mark { -fx-fill: null; -fx-stroke: blue; }
第一个 - 主要的,第二个 - 次要的。