检测鼠标滚动的方向

发布于 2024-11-18 23:12:59 字数 121 浏览 5 评论 0原文

MouseWheelListener 接口中只有一种方法。我需要根据鼠标是向上还是向下滚动来执行不同的操作。如何实现这样的事情呢?仅供参考,我在 JScrollPane 中有一个 JPanel。我将使用鼠标滚轮运动来放大或缩小。

There is only one method in the MouseWheelListener interface. I need to do different things depending on whether the mouse is scrolled up or down. How to achieve such a thing? Just for information, I have a JPanel inside a JScrollPane. I will use mouse wheel motion to zoom in or out.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不知所踪 2024-11-25 23:12:59

mouseWheelMoved 方法采用 MouseWheelEvent 参数。该参数中的一些字段可用于确定滚动方向(请参阅 MouseWheelEvent)。因此,一旦您知道轮子移动的方向,您就可以决定执行什么操作。

The mouseWheelMoved method takes a MouseWheelEvent parameter. There are fields in that parameter that you can use to determine the direction of the scrolling (see MouseWheelEvent). So once you know which direction the wheel moved in, you can decide what action to perform.

潦草背影 2024-11-25 23:12:59
event.getWheelRotation()

-1 = 向上

1 = 向下

event.getWheelRotation()

-1 = Up

1 = Down

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文