1

如何将动作侦听器添加到 netbeans 中的按钮

我试图这样做,但我不知道如何

button.addactionlistener(null);
4

2 回答 2

1

首先你需要在你的类中实现动作监听器。

public class YourProject extends JFrame implements ActionListener{
yourbutton.addActionListener(this);

您需要添加覆盖方法。

我希望这可以帮助你。

于 2013-04-08T13:39:53.993 回答
1

您也可以通过其他方式添加

JButton jb= new JButton("ok");

jb.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent ae)
      {System.out.println("You have clicked ok button");
    }
});
于 2013-04-10T07:39:14.423 回答