除了双击按钮之外,还有其他方法可以在设计模式下使用 windowbuilder (eclipse) 将 ActionListener 添加到按钮吗?

Is there any other way to add an ActionListener to a button using windowbuilder (eclipse) in design mode than to double click on the button?

我是使用 Eclipse 的 windowbuilder 设计器的新手。我使用的是 eclipse 2021-12、jdk17 和 windowbuilder 1.9.8 版本。 我正在尝试在设计模式下的按钮上添加一个 actionListener。但是当我在设计模式下双击这个按钮,添加一个 actionListener 时,没有任何反应。

这是源代码模式下的源代码:

import java.awt.EventQueue;

import javax.swing.JFrame;
import javax.swing.JButton;
import java.awt.Font;
import java.awt.Color;

public class SwingApp {

    private JFrame frame;

    /**
     * Launch the application.
     */
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    SwingApp window = new SwingApp();
                    window.frame.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    /**
     * Create the application.
     */
    public SwingApp() {
        initialize();
    }

    /**
     * Initialize the contents of the frame.
     */
    private void initialize() {
        frame = new JFrame();
        frame.setBounds(100, 100, 450, 300);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().setLayout(null);
        
        JButton btnClick = new JButton("Click");
        btnClick.setBackground(new Color(219, 112, 147));
        btnClick.setForeground(new Color(255, 255, 255));
        btnClick.setFont(new Font("Inconsolata SemiBold", Font.BOLD, 14));
        btnClick.setBounds(165, 101, 118, 51);
        frame.getContentPane().add(btnClick);
    }
}

这是设计模式下的效果图:the rendering in design mode

Righ-click 在按钮上并添加一个事件处理程序。您要添加鼠标事件处理程序。