定位子面板,我有兩個面板:使用的FlowLayout
main_panel
child_panel
的main_panel
佈局使用設置:
main_panel.setLayout(flowlayout)
我加入child_panel
到main_panel
:
main_panel.add(child_panel)
的child_panel
被添加到main_panel
但其位置是在水平中點和屏幕頂部的垂直截面的橫截面。我想要child_panel
位於左上角,如果我已將main_panel
的佈局設置爲null
,我可以使用child_panel.setlocation(a,b)
方法完成該操作。
我在這裏使用了FlowLayout
,因爲我希望JPanel
中的組件保持 的大小調整爲JFrame
。
所以我可以添加到child_panel
在main_panel
的確切位置我想,即使我設定的main_panel
不null
的Layout
?