因此,我决定让我的图形用户界面看起来更好一些,而改用GridBagLayout。以下是我要添加到面板中的对象:
choosePanel = new JPanel();
choosePanel.setLayout(new GridBagLayout());
chooseLabel = new JLabel("Choose a quarter to input data for:");
addItem(chooseLabel, 0, 0, 1, 1);
qGroup = new ButtonGroup();
q1 = new JRadioButton("Q1");
qGroup.add(q1);
q1.setSelected(true);
addItem(chooseLabel, 0, 1, 1, 1);
q2 = new JRadioButton("Q2");
qGroup.add(q2);
addItem(chooseLabel, 0, 2, 1, 1);
q3 = new JRadioButton("Q3");
qGroup.add(q3);
addItem(chooseLabel, 0, 3, 1, 1);
q4 = new JRadioButton("Q4");
qGroup.add(q4);
addItem(chooseLabel, 0, 4, 1, 1);
chooseButton = new JButton("Press to Enter Quarter");
chooseButton.addActionListener(e->{
cl.show(mainPanel, "Info");
this.setSize(330, 240);
});
chooseButton.setPreferredSize(new Dimension(200, 100));
addItem(chooseLabel, 1, 1, 1, 1);
resetButton = new JButton("Reset all previous data");
resetButton.addActionListener(e->{
});
resetButton.setPreferredSize(new Dimension(200, 100));
addItem(chooseLabel, 1, 2, 1, 1);下面是"addItem“方法:
private void addItem(JComponent c, int x, int y, int width, int height){
GridBagConstraints gbc = new GridBagConstraints();
gbc.gridx = x;
gbc.gridy = y;
gbc.gridwidth = width;
gbc.gridheight = height;
gbc.weightx = 100.0;
gbc.weighty = 100.0;
gbc.fill = GridBagConstraints.NONE;
choosePanel.add(c, gbc);
}我的问题是,当我运行程序时,所有显示的都是屏幕中央的chooseLabel,而不是其他任何东西。有人知道怎么解决吗?.
发布于 2015-07-08 05:12:16
变化
q1 = new JRadioButton("Q1");
qGroup.add(q1);
q1.setSelected(true);
addItem(chooseLabel, 0, 1, 1, 1);
q2 = new JRadioButton("Q2");
qGroup.add(q2);
addItem(chooseLabel, 0, 2, 1, 1);
q3 = new JRadioButton("Q3");
qGroup.add(q3);
addItem(chooseLabel, 0, 3, 1, 1);
q4 = new JRadioButton("Q4");
qGroup.add(q4);
addItem(chooseLabel, 0, 4, 1, 1);至
q1 = new JRadioButton("Q1");
qGroup.add(q1);
q1.setSelected(true);
addItem(q1 , 0, 1, 1, 1);
q2 = new JRadioButton("Q2");
qGroup.add(q2);
addItem(q2, 0, 2, 1, 1);
q3 = new JRadioButton("Q3");
qGroup.add(q3);
addItem(q3, 0, 3, 1, 1);
q4 = new JRadioButton("Q4");
qGroup.add(q4);
addItem(q4, 0, 4, 1, 1);以此类推。您一直在添加chooseLabel。
https://stackoverflow.com/questions/31283917
复制相似问题