java中如何给button添加事件

2024年11月14日 03:15
有2个网友回答
网友(1):

Java Swing本身提供了现成的按钮控件JButton 创建一个新的按钮:JButton about = new JButton; 这个按钮该放到菜单区:toolBar.add(about); 要为按钮添加事件响应,需要使用about.addActionListener(this)来告诉程序监听按钮按下时的事件,ActionListener是一个程序接口。 public class KyodaiUI extends JFrame implements ActionListener {...}实现ActionListener接口是为了告诉程序我要进行事件处理了。 最后我们得添加响应事件的代码: public void actionPerformed(ActionEvent e) { if (e.getSource() == about) {

网友(2):

Java Swing本身提供了现成的按钮控件JButton
创建一个新的按钮:JButton about = new JButton;
这个按钮该放到菜单区:toolBar.add(about);
要为按钮添加事件响应,需要使用about.addActionListener(this)来告诉程序监听按钮按下时的事件,ActionListener是一个程序接口。
public class KyodaiUI extends JFrame implements ActionListener {...}实现ActionListener接口是为了告诉程序我要进行事件处理了。
最后我们得添加响应事件的代码:
public void actionPerformed(ActionEvent e) {
if (e.getSource() == about)