How to add scrollbar to panel?

2020-05-06 08:34发布

问题:

I need help. I have one panel which can need to have width 1000px. I need to add lot of buttons with different size ( I add with flow layout and it works fine). Problem is that I have height on screen example 500px but when I add buttons panel has bigger size. How to add scrollbar to panel ?

回答1:

Add your panel to scrollpane and add that pane where you are adding your panel instead of panel

JScrollPane jScrollPane = new JScrollPane(panel);