Search code examples
javafxtableviewscrollbar

JavaFX: how to style scroll bar in TableView to look like standard Windows Scroll Bar?


I am trying to style TableView scroll bar to look like standard Windows Scroll Bar: that is, it should look like: standard windows scroll bar
(source: s-msft.com)

in this text area text box. Please help.


Solution

  • I don't think this will be possible with pure CSS, so I guess the option you have is to create your own skin, as the scrollbar is skinnable.

    As you probably don't want to set the skin for each scrollbar individually, make sure you set your skin in your application's css:

    .scroll-bar {
       -fx-skin: "org.foo.bar.MyWindowsScrollBarSkin";
    }