I'm having trouble getting JScrollPanes to actually display scroll bars

前端 未结 3 1518
小鲜肉
小鲜肉 2021-01-20 17:20

I\'ve found some examples scattered around the internet involving getting an image or a textbox to display scroll bars, but they all involve a program that basically display

3条回答
  •  天涯浪人
    2021-01-20 18:15

    Figures. Soon as I post I realize what's wrong.

    Because innerPanel has a null Layout it needs to have its preferred size explicitly declared.

        innerPanel.setPreferredSize(new Dimension(200,600));
    

    fixes it.

提交回复
热议问题