我正在尝试用两个简单的按钮创建一个JPanel。第一个按钮使面板中RoachComponent
个组件的数量加倍。第二个按钮将清除所有蟑螂。
现在,我的大部分计划都在运作,但是存在一个相当严重的问题。每次点击只添加一个蟑螂,即使它应该添加几千只蟑螂。我已经测试了所有我能想到的东西,但它仍然在逃避我。即使我手动添加两个蟑螂,也只显示一个。这是我的main函数中的代码。我99%肯定代码的其他部分都是正确的,尽管我可以在需要时发布它。
final JFrame frame = new JFrame();
final JPanel panel = new JPanel();
// Button to create a new roach
JButton button = new JButton("New Roach");
final RoachPopulation roachPopulation = new RoachPopulation(2);
// The label for displaying the results
final JLabel label = new JLabel("Population: " + roachPopulation.getPopulation());
// ActionListener class
class doubleListener implements ActionListener {
public void actionPerformed(ActionEvent event) {
System.out.println("------------------");
for (int i = 0; i < roachPopulation.getPopulation(); i++) {
RoachComponent newRoach = new RoachComponent();
panel.add(newRoach);
newRoach.getCoords();
}
panel.repaint();
frame.repaint();
roachPopulation.doublePopulation();
label.setText("Population: " + roachPopulation.getPopulation());
// Showing that there *is* the correct number of roaches in the panel.
System.out.println(panel.getComponentCount());
}
}
RoachComponent r1 = new RoachComponent();
RoachComponent r2 = new RoachComponent();
panel.setLayout(new BorderLayout());
panel.add(button, BorderLayout.SOUTH);
panel.add(label, BorderLayout.NORTH);
panel.add(r1);
panel.add(r2);
//panel.add(component, BorderLayout.CENTER);
frame.add(panel);
frame.repaint();
ActionListener doubleListener = new doubleListener();
button.addActionListener(doubleListener);
frame.setSize(FRAME_WIDTH, FRAME_HEIGHT);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
答案 0 :(得分:6)
删除frame.repaint();
的所有代码并在panel.revalidate()
之前添加jpanel.repaint();
(最后看)一切都取决于LayoutManager
使用的JPanel
以便及早发布更好的帮助SSCCE
答案 1 :(得分:1)
一个问题是,您需要在添加JPanel
后重新验证RoachComponent
:
panel.revalidate();