怎样实现在java中点击jbutton改变一个jlabel的位置?

importjava.awt.event.*;importjavax.swing.ImageIcon;importjavax.swing.JButton;importja... import java.awt.event.*;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class GUI {
private static JFrame frame = new JFrame("GUI test");
private static JPanel panel = new JPanel();

private static JButton button = new JButton("Button1");;
private static ImageIcon imageIcon = new ImageIcon("F:\\BluetoothChat\\a5_16.png");
private static JLabel label = new JLabel(imageIcon);
public static void main(String[] args) {
frame.setLayout(null);
panel.setLayout(null);
label.setLayout(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(500, 500);
panel.add(button);
// button.setLocation(100, 100);
button.setBounds(150, 150, 150, 150);
panel.add(label);
label.setBounds(50,50,100,100);
panel.setBounds(0, 0, 300, 300);
frame.add(panel);
frame.setVisible(true);
}

}
这里是我的代码,运行后是一个button和一张图,怎样给button添加单击事件改变这张图的位置?
展开
 我来答
wh猎人
2015-04-21 · TA获得超过1125个赞
知道大有可为答主
回答量:1157
采纳率:89%
帮助的人:650万
展开全部
button.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e){
         label.setBounds(150,150,50,50);
         panel.revalidate();
         panel.repatin();  
    }   
});
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式