我正在使用jScrollPane作为我的HTML页面。我想禁用scrollDrag功能,因为我只需要向上和向下箭头来滚动页面而不是通过拖动轨道/拖动器 怎么办?
答案 0 :(得分:0)
JScrollPane
从processMouseMotionEvent()
继承JComponent
如果您要使用自己的版本覆盖继承的processMouseMotionEvent()
,则可以选择忽略MouseEvent.MOUSE_DRAGGED
事件
答案 1 :(得分:0)
.jspDrag {
background:#bbd;
position:relative;
top:0;
left:0;
cursor:pointer;
**display:none;**
}