0

我正在尝试使用 ImageIcon 和 addMouseListener 从 JFrame 上的图像制作一个按钮,该按钮将通过单击将当前图像替换为另一个图像。

static JPanel jp = new JPanel();
final JLabel jl = new JLabel();
final JFrame jf = new JFrame();

    ImageIcon image = new ImageIcon("image1.jpg");
    jl.setIcon(image);
    jp.add(jl);
    jf.add(jp); 
    jf.validate();

    JLabel button = new JLabel(image);
    button.addMouseListener(new MouseAdapter() {
        public void mouseClicked(MouseEvent e) {
            jl.setIcon( null );
            ImageIcon image = new ImageIcon("image2.jpg");
            jl.setIcon(image);
        }
    });

GUI 显示为 image1.jpg,但按钮根本不起作用,我什至无法测试从 image1 到 image2 的替换是否有效。即使我尝试单击窗口上显示的 image1.jpg,GUI 也不会执行任何操作。

编辑:调整 JLabel 变量现在是最终的。其他类似的问题暗示这种方法应该有效,但我无法弄清楚代码有什么问题。

4

1 回答 1

0

也不确定 ActionListener 是否可以与 JLabel 一起使用。

不,您不能将 ActionListener 添加到 JLabel。更简单的方法是让 JButton 看起来像 JLabel,然后您可以将 ActionListener 添加到按钮:

JButton button = new JButton(...);
button.setBorderPainted(false);
button.setContentAreaFilled(false);
button.addActionListener(...);

但按钮根本不起作用

当针对同一鼠标点接收到 mousePressed 和 mouseReleased 时,将生成鼠标单击。因此,如果您稍微移动鼠标,则不会生成事件。而是监听 mousePressed() 事件。

于 2013-08-17T00:04:24.733 回答