Qt QML ComboBox override wheel events
问题 Is there any way to override ComboBox MouseArea to ignore wheel event instead of changing current index? ComboBox itself has no option to change wheel focus behaviour. So far I've tried to override onWheel from CB MouseArea with code like this: ComboBox { Component.onCompleted: { for (var i = 0; i < combobox_ctrl.children.length; ++i) { console.log(combobox_ctrl.children[i]) console.log(combobox_ctrl.children[i].hasOwnProperty('onWheel')) if (combobox_ctrl.children[i].hasOwnProperty('onWheel'