- % 设定figure作为鼠标事件的载体
- figure(1);
- axis([0,10,0,10]);
- % 设置对应的事件回调函数
- set(gcf,'WindowButtonDownFcn',@ButttonDownFcn,'WindowButtonUpFcn',@ButttonUpFcn, 'WindowButtonMotionFcn', @MouseMoveFcn, 'WindowScrollWheelFcn', @wheel);
- % 按键按下
- function ButttonDownFcn(src,event)
- pt = get(gca,'CurrentPoint');
- x = pt(1,1);
- y = pt(1,2);
- fprintf('Down x=%f,y=%f\n',x,y);
- end
- % 按键释放
- function ButttonUpFcn(src,event)
- pt = get(gca,'CurrentPoint');
- x = pt(1,1);
- y = pt(1,2);
- fprintf('Up x=%f,y=%f\n',x,y);
- end
- % 光标移动
- function MouseMoveFcn(src,event)
- pt = get(gca,'CurrentPoint');
- x = pt(1,1);
- y = pt(1,2);
- fprintf('Move x=%f,y=%f\n',x,y);
- end
- % 滚轮动作
- function wheel(src,event)
- fprintf('VerticalScrollCount=%d\n',event.VerticalScrollCount);
- end
复制代码 |