2009-06-05 10 views

答えて

2

javaでアクションをバインドするには、ActionListenerを追加します。

ボタンを作成するときに、そのボタンにActionListenerを追加する必要があります。このようにして、クリックイベントが発生すると、ボタンは何をすべきかを知っています。

newCustomerButon.add(new ActionListener(){ 

    public void actionPerformed(ActionEvent e){ 
     // This is where you put the code for popping up the form. 
     yourForm.setVisible(true); // Or something similar. 
    } 

}); 
0

私が知る限り、Componentから継承されたいくつかのadd()メソッドがありますが、どれもActionListenerをJButtonに追加しません。代わりにaddActionListener()を意味しますか?

0
JButton newCustomer = new JButton(); 

newCustomer.addActionListener(new ActionListener(){ 

    public void actionPerformed(ActionEvent e){ 
     // TODO bind the new customer menu dialog box 
    } 

}); 
関連する問題