我正在使用Qt 5.6
我希望ListView
及其所有项目都收到MouseArea
onEntered
,onClicked
信号。
我尝试了这些例子并改变了:
ListView {
anchors.fill: parent
model: searchModel
delegate: Component {
Row {
spacing: 5
Marker { height: parent.height }
Column {
Text { text: title; font.bold: true
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: console.log("eeee");
}
}
Text { text: place.location.address.text }
}
}
}
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: console.log("entered");
}
}
只有ListView
可以接受onEntered
信号,其商品无响应。
如何启用项目接收MouseArea
个活动?