我有TreeView
个自定义委托。代理人使用ToolTip
,如果代理人mouseArea
悬停,将会显示该代理人。但是,此mouseArea会在我的TreeView
中选择一行。我认为点击不会传播到TreeView
的mouseArea。我尝试了propagateComposedEvents
和mouse.accepted=false
,但选择仍然不起作用。
TreeView {
id: view
anchors.fill: parent
sortIndicatorVisible: true
model: fileSystemModel
rootIndex: rootPathIndex
selection: sel
selectionMode: 2
Component {
id: mycomp
Item {
id: myitm
Row{
id: myrow
CheckBox{
id: cbox
anchors.baseline: ctext.baseline
}
Text{
id: ctext
text: styleData.value
color: styleData.textColor
width: namecolumn.width-cbox.width-myrow.x
elide: Text.ElideRight
}
}
NC.ToolTip {
id: ttip
parent: ctext
text: qsTr(styleData.value)
delay: 500
visible: mouseArea.containsMouse
}
MouseArea {
id: mouseArea
anchors.fill: parent
hoverEnabled: true
propagateComposedEvents: true
onClicked: {
mouse.accepted = false
}
}
}
}
答案 0 :(得分:1)
只需将MouseArea的acceptedButtons属性设置为Qt.NoButton即可。此属性确定了区域将处理的按钮。 NoButton会导致该区域报告悬停事件,但不会处理任何点击。
请在此处查看该属性的完整文档:
http://doc.qt.io/qt-5/qml-qtquick-mousearea.html#acceptedButtons-prop