在Java swing包中,我想知道如何检测JButton何时被按下。是否有按下按钮时调用的功能?感谢
答案 0 :(得分:2)
是的,当您处理按钮按下时,您想要添加所谓的动作侦听器。首先,你必须
import java.awt.event.ActionListener;
然后你可以做以下
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
// this makes sure the button you are pressing is the button variable
if(e.getSource() == button) {
// do action necessary code
}
}
});