ComboBox {
id: control
model: ["First", "Second", "Third"]
MouseArea {
anchors.fill: parent
onClicked: {
control.popup.open()
}
onWheel: {
if (wheel.angleDelta.y < 0)
{
if (control.currentIndex < control.count-1)
control.currentIndex += 1
}
else
{
if (control.currentIndex > 0)
control.currentIndex -= 1
}
}
}
}