8

我正在尝试学习如何制作 JAVA 程序并且我正在使用 Swing。我试图在窗口的左上角放置一个按钮,并且它一直在顶部中心。

public void createGUI(){
    JFrame frame = new JFrame("My Project");
    frame.setDefaultCloseOperation(3);
    frame.setSize(400, 350);
    frame.setVisible(true);

    JPanel panel = new JPanel();

    frame.add(panel);

    addButtonGUI(panel, new JButton(), "test", 1, 1);
}

public void addButtonGUI(JPanel panel, JButton button, String text, int x, int y){
    GridBagConstraints gbc = new GridBagConstraints();
    button.setText(text);
    button.setEnabled(true);
    gbc.gridx = x;
    gbc.gridy = y;
    gbc.gridwidth = 2;
    gbc.weightx = 1.0D;
    gbc.fill = 2;
    panel.add(button, gbc);
}

我做错了什么还是有更好的方法来做到这一点?请帮忙

4

2 回答 2

7

您需要设置JPanelGridBagLayout使用的布局GridBagConstraints

JPanel panel = new JPanel(new GridBagLayout());

此外,由于您只有一个有效的“单元格”,您需要使用锚点并设置weightyJButton允许在 Y 轴上移动。

gbc.anchor = GridBagConstraints.NORTHWEST;
gbc.weighty = 1.0;

我也将设置fill设置为NONE

gbc.fill = GridBagConstraints.NONE;

这样按钮就不会占据面板的整个宽度。(2 =水平填充)。

于 2012-12-13T20:04:10.190 回答
2

代替

addButtonGUI(panel, new JButton(), "test", 1, 1);
}

如果你使用会发生什么

addButtonGUI(panel, new JButton(), "test", 0, 0);
}
于 2012-12-13T20:00:44.600 回答