How to hide the pannable scroll bar in JavaFX?

I created a pannable scrollpane Now I want to hide the bar to the right of the scroll bar

.scroll-bar:horizontal .increment-arrow,.scroll-bar:horizontal .decrement-arrow,.scroll-bar:horizontal .increment-button,.scroll-bar:horizontal .decrement-button {
    -fx-padding:0;
    -fx-opacity: 0;
}

Any ideas?

Solution

I found the answer:

scrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
scrollPane.setVbarPolicy(ScrollBarPolicy.NEVER);
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>