java鼠标事件

在一个鼠标事件的程序中,里面有mouseDragged(MouseEvente)方法里面有这样的一段代码,代码如下:publicvoidmouseDragged(Mous... 在一个鼠标事件的程序中,里面有mouseDragged(MouseEvent e)方法里面有这样的一段代码,代码如下:
public void mouseDragged(MouseEvent e)
{ Component com = null ;
if (e.getSource() instanceof Component )
{ com=(Component)e.getSource();
if (com!=this) //假如不是在窗口中拖动鼠标
move = true ;
e=SwingUtilities.convertMouseEvent(com,e,this); //转移鼠标事件到窗口

if (move)
{ x = e.getX(); //获取鼠标在窗口中的位置坐标
y = e.getY();
int w = com.getSize().width,
h = com.getSize().height;
com.setLocation(x-w/2,y-h/2);
}
}
}
请高手详细分析里面每一段代码的意思同用法作用,谢谢..........
展开
 我来答
asasas2002
2008-04-08 · TA获得超过1348个赞
知道小有建树答主
回答量:367
采纳率:100%
帮助的人:302万
展开全部
public void mouseDragged(MouseEvent e)
{ Component com = null ; //窗口
if (e.getSource() instanceof Component ) //判断鼠标的动作是不是窗口的对象。
{ com=(Component)e.getSource(); //实例化这个动作
if (com!=this) //假如不是在窗口中拖动鼠标
move = true ;
e=SwingUtilities.convertMouseEvent(com,e,this); //转移鼠标事件到窗口

if (move) //如果不是在窗口中拖动鼠标 ,即鼠标出去了
{ x = e.getX(); //获取鼠标在窗口中的位置坐标
y = e.getY();
int w = com.getSize().width,
h = com.getSize().height;
com.setLocation(x-w/2,y-h/2); //把窗口的位置重置到鼠标处
}
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式