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.
当辅助框架被添加到包中并使用frame.setVisible(true);框架显示调用框架时,但是当它显示它并没有打开它的构建大小而是框架可以去的最小尺寸并且用户必须调整它的大小时,为什么是这样?
frame.setVisible(true);
示例图片:
这是 SSCCE 的链接
一定要pack()你的框架,然后调用setVisible()。
pack()
setVisible()