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);
}
}
}
请高手详细分析里面每一段代码的意思同用法作用,谢谢.......... 展开
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);
}
}
}
请高手详细分析里面每一段代码的意思同用法作用,谢谢.......... 展开
展开全部
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); //把窗口的位置重置到鼠标处
}
}
}
{ 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); //把窗口的位置重置到鼠标处
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询