标签: qt qml
我在GridView中有一个ScrollView。
GridView
ScrollView
鼠标滚轮的默认滚动速度/步进只是几个像素,我想增加它。这样做的更好方法是什么?
我正在使用Qt5.3。
答案 0 :(得分:4)
您可以使用ScrollView的__wheelAreaScrollSpeed属性来设置其滚动速度。
__wheelAreaScrollSpeed
ScrollView { __wheelAreaScrollSpeed: 50 Item {} //The content you wish to scroll }