Disable mouse wheel for QML Slider
问题 I want to be able to scroll Flickable with mouse wheel (or two fingers on touchpad) without changing Slider s it may containt. Sample code and result application: import QtQuick 2.7 import QtQuick.Window 2.2 import QtQuick.Controls 1.4 ApplicationWindow { id: rootWindow visible: true width: 400 height: 200 title: qsTr("Hello World") ScrollView { anchors.fill: parent flickableItem.flickableDirection: Flickable.VerticalFlick Column { Repeater { model: 40 Slider { width: rootWindow.width * 0.9 }