我一直有的问题是,每当我将一个JButton添加到JPanel时,我所拥有的任何其他JButton都会朝这个方向移动。
这是第一个代码:
//imports
import java.awt.*;
import javax.swing.*;
public class Example {
public static void main(String[] args) {
// Create the frame and panel and the Grid Bag Constraints
JFrame frame = new JFrame();
JPanel panel = new JPanel(new GridBagLayout());
GridBagConstraints c = new GridBagConstraints();
// Create ONE JButton
JButton button1 = new JButton("Button1");
// Set the frame's properties
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(600, 600);
frame.getContentPane().add(panel, BorderLayout.NORTH);
frame.setVisible(true);
// Set Basic Grid Bag Constraints settings.
c.gridx = 0;
c.gridy = 0;
// Set the Insets
c.insets = new Insets(0, 0, 0, 0);
// Add the Grid Bag Constraints and button1 the panel
panel.add(button1, c);
}
}
一切似乎都正常吗? 好吧,如果我们添加第二个按钮:
//imports
import java.awt.*;
import javax.swing.*;
public class Example {
public static void main(String[] args) {
// Create the frame and panel and the Grid Bag Constraints
JFrame frame = new JFrame();
JPanel panel = new JPanel(new GridBagLayout());
GridBagConstraints c = new GridBagConstraints();
// Create TWO JButtons
JButton button1 = new JButton("Button1");
JButton button2 = new JButton("Button2");
// Set the frame's properties
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(600, 600);
frame.getContentPane().add(panel, BorderLayout.NORTH);
frame.setVisible(true);
// Set Basic Grid Bag Constraints settings.
c.gridx = 0;
c.gridy = 0;
// Set the Insets
c.insets = new Insets(0, 0, 0, 0);
// Add the Grid Bag Constraints and button1 the panel
panel.add(button1, c);
// Set the Insets
c.insets = new Insets(500, 0, 0, 0);
// Add the Grid Bag Constraints and button2 the panel
panel.add(button2, c);
}
}
然后button1向下移向button2。有谁知道为什么和/或修复它?
编辑:我要问的是,如何在不移动其他按钮的情况下添加另一个按钮。
答案 0 :(得分:0)
我不知道你的意图是什么。你只说它没有做你期望的事情。所以我无法给你一个确切的解决方案。
在任何情况下,首先阅读How to Use GridBagLayout上的Swing教程中的部分,了解使用GridBagLayout
的工作示例。
我看到两个问题:
您永远不会更改gridx / y值。这两个组件都被添加到网格(0,0)中,这不是GridBagLayout
应该如何工作的。每个组件都需要添加到不同的单元格中。
(500,....)的Insets
值似乎非常大。