How to hide the horizontal Scrollbar of a ListView in JavaFX

前端 未结 3 1390
梦毁少年i
梦毁少年i 2020-12-16 18:39

How can I hide the horizontal scrollbar of a ListView? I tried it in different ways and probably it\'s totally easy, but I just can\'t get it to run.

3条回答
  •  不知归路
    2020-12-16 19:33

    Bit of a hack, but this should do it. In the CSS:

    .list-view .scroll-bar:horizontal {
        -fx-opacity: 0;
        -fx-padding:-7;
    }
    

    Note that the scroll bar is still there, and mouse gestures around where it "should" be will result in scroll behavior.

提交回复
热议问题