如何设置JButton在按下时改变JPanel上的JLabel位置? 如何在JButton上实现actionlistener?
答案 0 :(得分:2)
您希望首先将动作侦听器添加到按钮
button.addActionListener(new ButtonListener());
接下来,您要创建自定义类
class ButtonListener implements ActionListener {
public void actionPerformed(ActionEvent e) {
if(e.getSource() == button) {
label.setLocation(xValue, yValue);
}
}
}
将xValue / yValue更改为您希望标签更改为的x和y值。
我希望这有帮助!