Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使我的JFrame自动调整大小?大小取决于框架中现有的组件,但用户可以动态添加更多组件。
JFrame
您可以使用该JFrame.pack()方法,根据文档:
JFrame.pack()
使此 Window 调整大小以适合其子组件的首选大小和布局。
有关动态添加的组件(使用按钮添加的标签 - 在滚动窗格中)以及可调整大小的 GUI,请参阅嵌套布局示例。