How to add scrollbar to panel?

后端 未结 1 2056
鱼传尺愫
鱼传尺愫 2021-01-26 09:14

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

1条回答
  •  南方客
    南方客 (楼主)
    2021-01-26 09:45

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

    JScrollPane jScrollPane = new JScrollPane(panel);
    

    0 讨论(0)
提交回复
热议问题