Discuz! Board

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 1237|回复: 0

matlab鼠标 滚轮事件

[复制链接]

391

主题

1222

帖子

3902

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
3902
发表于 2023-5-13 23:05:13 | 显示全部楼层 |阅读模式
  1. % 设定figure作为鼠标事件的载体
  2. figure(1);
  3. axis([0,10,0,10]);

  4. % 设置对应的事件回调函数
  5. set(gcf,'WindowButtonDownFcn',@ButttonDownFcn,'WindowButtonUpFcn',@ButttonUpFcn, 'WindowButtonMotionFcn', @MouseMoveFcn, 'WindowScrollWheelFcn', @wheel);

  6. % 按键按下
  7. function ButttonDownFcn(src,event)
  8. pt = get(gca,'CurrentPoint');
  9. x = pt(1,1);
  10. y = pt(1,2);
  11. fprintf('Down x=%f,y=%f\n',x,y);
  12. end

  13. % 按键释放
  14. function ButttonUpFcn(src,event)
  15. pt = get(gca,'CurrentPoint');
  16. x = pt(1,1);
  17. y = pt(1,2);
  18. fprintf('Up x=%f,y=%f\n',x,y);
  19. end

  20. % 光标移动
  21. function MouseMoveFcn(src,event)
  22. pt = get(gca,'CurrentPoint');
  23. x = pt(1,1);
  24. y = pt(1,2);
  25. fprintf('Move x=%f,y=%f\n',x,y);
  26. end

  27. % 滚轮动作
  28. function wheel(src,event)
  29. fprintf('VerticalScrollCount=%d\n',event.VerticalScrollCount);
  30. end
复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|DiscuzX

GMT+8, 2025-4-5 03:51 , Processed in 0.035299 second(s), 18 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表