Resizing a JPanel inside a JFrame

后端 未结 1 734
春和景丽
春和景丽 2021-01-20 20:42

I am new to Java, started learning swing and have a problem with resizing a JPanel inside a JFrame. I am following this tutorial:

http://vincentramdhanie.blogspot.co

相关标签:
1条回答
  • 2021-01-20 21:25

    You can't resize the JComponent because you've select CardLayout. The CardLayout can holds/manages one or more components that share the same display space.

    What you need to read documentation and good tutorials.

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