import QtQuick 2.1 import QtQuick.Controls 1.0 ApplicationWindow { title: qsTr("Hello World") width: 640 height: 480 ScrollView { Item { width: 500 height: 500 MouseArea { anchors.fill: parent onWheel: { console.log("Wheel event!") wheel.accepted = false; } } } } }