我是 QML 的新手,我正在尝试突出显示鼠标悬停上的图像。我有一排电影图像,如下所示:
这是我的图像编号 4(泰山)的代码:
Rectangle{
id:rect4
width: parent.width/5-row.spacing/5
height:parent.height
color:'transparent'
Image{
id: tarzan
fillMode: Image.PreserveAspectFit
anchors.fill: parent
source:'qrc:tarzan.jpg'
MouseArea{
id:area
width:parent.width
height: parent.height
hoverEnabled: true
anchors.fill:parent
onClicked:tarzan.forceActiveFocus()
}
我尝试了不同的方法,但没有任何反应。有任何想法吗?帮助将不胜感激。