检测鼠标滚动的方向
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
-1 = 向上
1 = 向下
-1 = Up
1 = Down