游戏结束时,我将显示以下弹出窗口:
Popup {
id: popup
anchors.centerIn: parent
Text{
text: "Game Over!!" + "\n\n" + "New High Score: "+ score_val
anchors.centerIn: canvas
color: "grey"
font.pixelSize: 70
font.family: gill.name
}
modal: true
focus: true
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent
}
一切都很好,但是背景是白色,似乎没有背景颜色属性,我该怎么办?
答案 0 :(得分:1)
您必须将一项设置为background
属性:
Popup {
id: popup
anchors.centerIn: parent
Text{
text: "Game Over!!" + "\n\n" + "New High Score: "+ score_val
anchors.centerIn: canvas
color: "grey"
font.pixelSize: 70
font.family: gill.name
}
background: Rectangle {
color: "transparent"
border.color: "black"
}
modal: true
focus: true
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent
}