向netbeans中的按钮添加操作侦听器



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

我试过了,但是我不知道怎么做

button.addactionlistener(null);

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

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

您需要添加覆盖方法。

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

JButton jb= new JButton("ok");
jb.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent ae)
      {System.out.println("You have clicked ok button");
    }
});

相关内容

  • 没有找到相关文章

最新更新