北京天津河北 英文:能否举个例子?

来源:百度文库 编辑:神马品牌网 时间:2024/04/29 20:05:59
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事件的时候背景颜色发生变化