как установить всплывающий цвет фона на прозрачный - PullRequest
2 голосов
/ 01 декабря 2019

По окончании игры у меня появляется следующее всплывающее окно:

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

}

Все хорошо, но фон белый, и свойства цвета фона, кажется, нет, что мне делать?

1 Ответ

1 голос
/ 01 декабря 2019

Вы должны установить элемент как 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
    }
    <b>background: Rectangle {
        color: "transparent"
        border.color: "black"
    }</b>
    modal: true
    focus: true
    closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent
}
...