gpt4 book ai didi

java - 带有 ActionListener/MouseListener 的 JButton

转载 作者:行者123 更新时间:2023-11-29 08:52:00 24 4
gpt4 key购买 nike

是否可以创建一个同时具有 ActionListener 和 MouseListener 的 Jbutton

意思是我创建了一个按钮,然后当我按下它时(通过 actionListener)它改变了框架,这样在按下按钮之后我可以按下框架上的任何地方并且 MouseListener 将被使用。

JButton button = new JButton();//Creates Button
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
//Insert MouseListener
//Then do something with mouseListener
}
});

这是当前代码:但是当我尝试单击按钮时它们现在处于同步状态,我无法第二次调用 mouseListener

    JButton button2 = new JButton("Click");
button2.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
System.out.println("You clicked the button");
newCube.stopCube();
}

});
button2.addMouseListener(new java.awt.event.MouseAdapter()
{
public void mousePressed(java.awt.event.MouseEvent evt)
{
double x = evt.getX();
double y = evt.getY();
newCube.setCube(x,y);
}
});

最佳答案

如果你想通过点击来移动某些东西,你可以直接在那个节点上使用鼠标监听器,而不是在按钮上使用它。

要在按钮上同时添加 Action 监听器和鼠标监听器,您可以在按钮上使用 addActionListener 和 addMouseListener 方法。

查看 api 以获取有关这些方法的信息... http://docs.oracle.com/javase/7/docs/api/javax/swing/JButton.html

关于java - 带有 ActionListener/MouseListener 的 JButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22348685/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com