ScrollBar movement not smooth in JScrollpane in Swing

后端 未结 3 1631
予麋鹿
予麋鹿 2021-01-20 15:39

I have a situation like this. I have scrollpane whose viewportView is a JPanel And that JPanel has the layout as BoxLayout. In this panel I add one class which extends JPane

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-20 16:34

    As @mKorbel notes, both JTable and JList implement Scrollable for convenient scroll increments, and they both use the flyweight pattern for rendering speed. If you can't use either component directly, you can still use the patterns. The tutorial includes Scrollable examples, and there's a CellRendererPane example here.

提交回复
热议问题