为每个用户输入添加对象

时间:2015-12-18 00:35:13

标签: java object jpanel jbutton user-input

每次用户按下按钮时,我都会尝试创建一个新按钮。

所以,如果我点击"添加"按钮,然后一个新的面板/按钮/事物将被添加到JPanel。

不确定this是否与我要求的相同

不知道

guiButtons[0]

if(buttonClick.getSource().equals(guiButtons[0]))

如果有人能解释

会很好

1 个答案:

答案 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);
        }
    });