How to add scrollbar to panel?

后端 未结 1 2036
鱼传尺愫
鱼传尺愫 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)
提交回复
热议问题