Remove Arrows from Swing Scrollbar in JScrollPane

后端 未结 4 1500
半阙折子戏
半阙折子戏 2021-01-14 11:08

I would like to remove the scrollbar arrow buttons from a scrollbar in a JScrollPane. How would I do this?

4条回答
  •  南笙
    南笙 (楼主)
    2021-01-14 11:45

    It is not the most elegant way... but works for me

    JScrollBar jsb = getHorizontalScrollBar();
            for(Component c : jsb.getComponents()) {
                jsb.remove(c);
            }
    

提交回复
热议问题