以下是我的Qml代码:
Button {
id: newMenu
anchors {
top: topMenu.top
topMargin: 15
left: topMenu.left
leftMargin: 16
}
text: "New"
iconSource: "../images/New.png"
MouseArea {
id: mouseArea
anchors.fill: parent
hoverEnabled: true //this line will enable mouseArea.containsMouse
onClicked: {
newProjectFileDlg.visible = true
}
onEntered: {
console.log(tt1);
}
}
style: ButtonStyle {
id: buttonStyle
background: Rectangle {
id: tt1
implicitWidth: 100
implicitHeight: 25
border.width: 0
radius: 4
color: mousearea.entered ? "lightsteelblue" : "#2e2e2e"
}
}
我想访问此按钮的样式属性,当鼠标悬停时更改background.color。但是console.log outpu始终是
qrc:/qmls/menu.qml:40: ReferenceError: tt1 is not defined
如何使用JavaScript获取元素?或者我们还有其他方法可以在输入鼠标时更改背景颜色。
答案 0 :(得分:4)
回答你的问题,你应该定义公共财产,如:
Button {
id: root
property color backgroundColor: pressed ? 'skyblue'
: mousearea.entered ? "lightsteelblue"
: "#2e2e2e"
...
MouseArea { id: mousearea; ... }
style: ButtonStyle {
background: Rectanlge { color: root.backgroundColor; ... }
}
}
然后使用is属性覆盖默认实现。
但是,
您正试图以完全错误的方式使用样式。 Style
是Control
状态的直观表示,不应在运行时手动更改。因此,正确的方法是将控件属性绑定到样式(例如,使用属性control
)。
style: ButtonStyle {
background: Rectangle {
color: control.hovered ? 'lightsteelblue'
: 'skyblue'
}
}
答案 1 :(得分:1)
通过在按钮内嵌套矩形然后使用onHoveredChanged属性修改不透明度,可以在不使用样式的情况下实现类似的操作。一个例子如下。我这样做是为了避免与普通按钮风格的悬停效果发生冲突。
Button {
text: "Push me"
Rectangle{
id: myRectId
anchors.fill: parent
anchors.margins: 1
color: "green"
opacity : .2
}
onHoveredChanged: hovered ? myRectId.opacity = 0 : myRectId.opacity = .2;
}
最终看起来像这样: