Making a JPanel manually resizable

前端 未结 4 2133
我寻月下人不归
我寻月下人不归 2020-12-31 08:10

I have a JFrame with BorderLayout as the layout manager.

In the south border, I have a JPanel, I want this JPanel

4条回答
  •  温柔的废话
    2020-12-31 08:43

    You might have to specify JFrame.setResizeable = true; on both the Parent JFrame(the one with the border layout) and the child JFrame.

    You also might want to use a JPanel in the south border.

提交回复
热议问题