需要在 jScrollPane 中禁用拖动
我在 HTML 页面中使用 jScrollPane 。我想禁用scrollDrag功能,因为我只需要向上和向下箭头来滚动页面,而不是通过拖动轨道/拖动器 怎么办?
I'm using jScrollPane for my HTML page. I want to disable the scrollDrag functionality because I need only Up and down arrow to scroll the page not by dragging the track/dragger
How to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JScrollPane
从JComponent
继承processMouseMotionEvent()
如果您要使用自己的版本覆盖继承的processMouseMotionEvent()
然后您可以选择忽略MouseEvent.MOUSE_DRAGGED
事件JScrollPane
inherits theprocessMouseMotionEvent()
fromJComponent
If you were to override the inheritedprocessMouseMotionEvent()
with you own version you could then choose to ignore theMouseEvent.MOUSE_DRAGGED
event