How to hide the pannable scroll bar in JavaFX?
•
Java
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
二维码