基本上,我怎么产生的? 我敢肯定,这是一个工作GridBagLayout
,但我不能换我周围的头如何正确尺寸“操作窗格”相对于“菜单栏”。 红色和黑色的线表示我相信你是在这种情况下,(3×3)使用网格,但我可能是完全错误的,有可能是一个办法做到这一点在不同的配置。 我试图勾搭的weightx
, weighty
, gridheight
, gridwidth
值GridBagConstraints
,但我不能在这里实现我的目标。
注意,第二红线被认为是该帧的下半部分的高度的正好三分之一。
这是我最新的尝试,试图通过使用3×6格(C为GridBagConstraints对象,characterPortraits包含所有的画像,并currentScreen是“操作窗格”):
c.fill = GridBagConstraints.BOTH;
c.weightx = 0.25;
c.weighty = (1/6);
c.gridx = 0;
c.gridy = 0;
c.gridheight = 3;
pane.add(characterPortraits.get(0), c);
c.gridx = 2;
pane.add(characterPortraits.get(1), c);
c.gridx = 0;
c.gridy = 3;
c.gridheight = 3;
pane.add(characterPortraits.get(2), c);
c.gridx = 2;
pane.add(characterPortraits.get(3), c);
//c.fill = GridBagConstraints.NONE;
c.weightx = 1.0;
c.weighty = 1.0;
c.gridx = 1;
c.gridy = 0;
c.gridheight = 3;
pane.add(currentScreen, c);
取而代之的是,这将产生在其象限的底部各占三分之一的肖像,以及操作窗格以5/6的中心柱,而不是4/6,像我想它。 任何想法会有所帮助; 谢谢! -B。
编辑:我设计这个应用程序有一个固定的窗口大小; 有人会说这是不好的设计,但我真的只是想获得Swing组件的感觉,并确保他们至少在固定窗口的行为我希望他们的方式。 我想我可以允许适当的最大化,调整大小,但仅此而已。
虽然,它似乎显得有点怪异,我认为你将你JMenuBar
,在最怪异的位置。 虽然你可以做什么,克服你在这行中提到的困难
Instead, this produces each portrait in the bottom third of its quadrant, and the
Action Pane taking 5/6 of the center column instead of 4/6, like I want it to.
是添加一个JPanel
在此位置,并把你ActionPane
和JmenuBar
这种添加JPanel
,以达到期望的结果。 于是,我又增加了centerPanel
在这个位置显示出来,如何可以做到这一点。
我希望这输出你需要的是什么:
这里是负责该输出的代码:
import java.awt.*;
import javax.swing.*;
public class GridBagPanelLayout
{
private JPanel portrait1;
private JPanel portrait2;
private JPanel portrait3;
private JPanel portrait4;
private JPanel centerPanel;
private JPanel actionPane;
private void createAndDisplayGUI()
{
JFrame frame = new JFrame("GridBag JPanel Layout Example");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
/*
* This JPanel will serve as the
* Content Pane, for the JFrame.
*/
JPanel contentPane = new JPanel();
contentPane.setOpaque(true);
contentPane.setBackground(Color.WHITE);
contentPane.setLayout(new GridBagLayout());
GridBagConstraints gbc = new GridBagConstraints();
gbc.anchor = GridBagConstraints.FIRST_LINE_START;
gbc.fill = GridBagConstraints.BOTH;
gbc.gridx = 0;
gbc.gridy = 0;
gbc.weightx = 0.33;
gbc.weighty = 0.5;
gbc.gridheight = 2;
portrait1 = new JPanel();
portrait1.setOpaque(true);
portrait1.setBackground(Color.BLUE);
portrait1.setBorder(
BorderFactory.createMatteBorder(
2, 2, 2, 2, Color.WHITE));
contentPane.add(portrait1, gbc);
gbc.gridx = 1;
gbc.gridy = 0;
gbc.weighty = 1.0;
gbc.gridheight = 4;
centerPanel = new JPanel();
centerPanel.setOpaque(true);
centerPanel.setBackground(Color.WHITE);
centerPanel.setLayout(new GridBagLayout());
GridBagConstraints constCenter = new GridBagConstraints();
constCenter.anchor = GridBagConstraints.FIRST_LINE_START;
constCenter.fill = GridBagConstraints.BOTH;
constCenter.gridx = 0;
constCenter.gridy = 0;
constCenter.weightx = 1.0;
constCenter.weighty = 0.975;
actionPane = new JPanel();
actionPane.setOpaque(true);
actionPane.setBackground(Color.MAGENTA);
actionPane.setBorder(
BorderFactory.createMatteBorder(
2, 2, 2, 2, Color.WHITE));
centerPanel.add(actionPane, constCenter);
constCenter.gridx = 0;
constCenter.gridy = 1;
constCenter.weighty = 0.025;
centerPanel.add(getMenuBar(), constCenter);
contentPane.add(centerPanel, gbc);
gbc.gridx = 2;
gbc.gridy = 0;
gbc.weighty = 0.5;
gbc.gridheight = 2;
portrait3 = new JPanel();
portrait3.setOpaque(true);
portrait3.setBackground(Color.BLUE);
portrait3.setBorder(
BorderFactory.createMatteBorder(
2, 2, 2, 2, Color.WHITE));
contentPane.add(portrait3, gbc);
gbc.gridx = 0;
gbc.gridy = 2;
//gbc.weighty = 0.5;
//gbc.gridheight = 2;
portrait2 = new JPanel();
portrait2.setOpaque(true);
portrait2.setBackground(Color.BLUE);
portrait2.setBorder(
BorderFactory.createMatteBorder(
2, 2, 2, 2, Color.WHITE));
contentPane.add(portrait2, gbc);
gbc.gridx = 2;
gbc.gridy = 2;
gbc.weighty = 0.5;
gbc.gridheight = 2;
portrait4 = new JPanel();
portrait4.setOpaque(true);
portrait4.setBackground(Color.BLUE);
portrait4.setBorder(
BorderFactory.createMatteBorder(
2, 2, 2, 2, Color.WHITE));
contentPane.add(portrait4, gbc);
frame.setContentPane(contentPane);
frame.setSize(500, 300);
frame.setLocationByPlatform(true);
frame.setVisible(true);
}
private JMenuBar getMenuBar()
{
JMenuBar menuBar = new JMenuBar();
JMenu fileMenu = new JMenu("File");
fileMenu.setOpaque(true);
fileMenu.setBackground(Color.BLACK);
fileMenu.setForeground(Color.WHITE);
JMenuItem newItem = new JMenuItem("NEW");
JMenuItem openItem = new JMenuItem("OPEN");
fileMenu.add(newItem);
fileMenu.add(openItem);
JMenu editMenu = new JMenu("Edit");
editMenu.setOpaque(true);
editMenu.setBackground(Color.BLACK);
editMenu.setForeground(Color.WHITE);
JMenuItem redoItem = new JMenuItem("Redo");
JMenuItem undoItem = new JMenuItem("Undo");
editMenu.add(redoItem);
editMenu.add(undoItem);
JMenu viewMenu = new JMenu("View");
viewMenu.setOpaque(true);
viewMenu.setBackground(Color.BLACK);
viewMenu.setForeground(Color.WHITE);
JMenuItem zInItem = new JMenuItem("Zoom In");
JMenuItem zOutItem = new JMenuItem("Zoom Out");
viewMenu.add(zInItem);
viewMenu.add(zOutItem);
menuBar.add(fileMenu);
menuBar.add(editMenu);
menuBar.add(viewMenu);
menuBar.setOpaque(true);
menuBar.setBackground(Color.BLACK);
return menuBar;
}
public static void main(String... args)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
new GridBagPanelLayout().createAndDisplayGUI();
}
});
}
}
我从来没有去过的GridBagLayout的大风扇。 这是很难得到正确的 - 每个组件最多可以有11个约束 - 这是难以维持,并且重复使用相同的约束对象可能会导致意想不到的后果。
相反,我宁愿窝各种类型的布局。 对我来说,你显然有:
- 一个
BorderLayout
,与West
, Center
和East
板 - 里面的
West
面板,你有一个GridLayout
- 2行1列(画像1和2)。 - 内部
East
面板,你有GridLayout
- 2行,第1列(画像3和4)。 - 里面的
Center
面板上,你有另外BorderLayout
,与Center
部件(操作窗格)和South
成分(菜单栏)。
这个唯一的限制是,西方面板和东部面板没有逻辑连接。 如果肖像1,2,3,4都是一样大小的,这不是一个问题。 如果他们是不同大小的,你可能会发现,西部和东部的面板将具有不同的形状。
文章来源: How do I use GridBayLayout in Java (Swing) to generate this particular image in my frame?