今晚谁当家 小潘潘:能否举个例子?

来源:百度文库 编辑:高考问答 时间:2024/04/28 15:40:25
java中MouseMotionLister\mouseMoved怎么用法
请大侠举个例子吧!谢谢了。

import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class Example extends Applet implements MouseMotionListener
{
text =new textField()
setLayout(new BorderLayout());
setBackground(Color.green);
addMouseMotionListener(this);
add(text,"South");
}
public void mouseDragged(MouseEvent e)
{
text.setBackground(Color.red);
text.setText("鼠标的坐标:"+"("+e.getX()+","+e.getY()+")");
}
public void mouseMoved(MouseEvent e)
{
text.setBackground(Color.blue);
text.setText("鼠标的坐标:"+"("+e.getX()+","+e.getY()+")");
}
}

自己打得,注意下看看字符有没有写错
主要是产生mouseDragged和 mouseMoved事件的时候背景颜色发生变化