我有一个 JButton,我想在按下它时创建一个新的 JButton 我添加了一个看起来像这样的 ActionListener,但它没有添加另一个 JButton。
public void actionPerformed(ActionEvent e){
Object command = e.getSource();
if(command.equals(play)){
ImageIcon i1 = new ImageIcon("NewGame.png");
width = i1.getIconWidth();
height = i1.getIconWidth();
newGame = new JButton(i1);
newGame.setBorderPainted(false);
newGame.setContentAreaFilled(false);
newGame.setSize(width, height);
newGame.setLocation(600,100);
add(newGame);
System.out.println("It Works");
}
}
我将如何做到这一点,以便当我按下已经存在的 JButton 时会添加这个?