我创建了一个图像查看器,可以放大鼠标向下放大鼠标。鼠标按下时,您可以拖动图像:
public void dragOnMouseMove( MouseEvent event ) {
if( zoomedIn ) {
if( mouseStartX != null && mouseStartY != null ) {
double x = this.getTranslateX() - (mouseStartX - event.getX());
double y = this.getTranslateY() - (mouseStartY - event.getY());
LOG.debug( "moving picture to: " + x + "," + y );
this.setTranslateX( x );
this.setTranslateY( y );
}
mouseStartX = event.getX();
mouseStartY = event.getY();
}
}
这必然会拖动事件。 问题是:当鼠标到达屏幕边框时,拖动会停止,因为坐标不会更改。 有没有办法独立于光标位置检测鼠标移动?
答案 0 :(得分:0)
如果我很了解您正在寻找MouseInfo.getPointerInfo().getLocation()可能会有所帮助。它返回与当前鼠标位置对应的Point对象。