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.
我要这个:
我的框架是一个 GridLayout (3,2),我能拥有的是:
我将按钮放在面板中,我认为它更容易。但是我怎样才能改变网格的大小呢?
选择另一个LayoutManager例如GridBagLayout
LayoutManager
GridBagLayout
如您所见,GridLayout 使网格中的所有单元格大小相同。
您的布局由主 JPanel 内的两个 JPanel 组成。
主 JPanel 将有一个带有 Y 轴的 BoxLayout。
面板 JPanel 将有一个 GridBagLayout。
JPanel 按钮将具有 FlowLayout。