JPanel east = new JPanel( new BorderLayout() );
east.add(sandwiches, BorderLayout.LINE_START);
JPanel anotherPanel = new JPanel( new GridLayout(0, 1) );
anotherPanel.add( new JButton("Button1") );
anotherPanel.add( new JButton("Button2") );
east.add(anotherPanel, BorderLayout.LINE_END);
//add(sandwiches, BorderLayout.EAST);
add(east, BorderLayout.EAST);
1条答案
按热度按时间cl25kdpy1#
我想在右侧添加另一个面板?
因此,您可以使用适当的布局管理器创建另一个子jpanel:
所以“东”面板变成了一个嵌套面板,包含另外两个面板。