每次用户按下按钮时,我都会尝试创建一个新按钮。
所以,如果我点击"添加"按钮,然后一个新的面板/按钮/事物将被添加到JPanel。
不确定this是否与我要求的相同
不知道
guiButtons[0]
在
if(buttonClick.getSource().equals(guiButtons[0]))
如果有人能解释
会很好答案 0 :(得分:0)
您可以尝试以下代码,可能会帮助您
JPanel panel = new JPanel(new FlowLayout());
JButton button = new JButton("Add");
button.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
JButton newButton = new JButton("New Added Bnt");
panel.add(newButton);
}
});