我有JFrame
。我使用setBounds()
来确定位置和大小,但是当我使用frame.setLayout( new FlowLayout() )
时,所有组件都会混乱。
解决方案是什么?
答案 0 :(得分:1)
1)setBounds()
使用null LayoutManager
(setLayout(null)
)是不好的做法。
2)当您使用FlowLayout
时,它会计算组件的位置和大小。
所以,你不能混合两种方法。检查如何使用LayoutManager
。