LINUX.ORG.RU

popup на qml (qt5)


0

2

Не получается сделать попап который можно было бы сделать больше и сместить по центру. Имеется ввиду что если я рисую попап с отрицательными x и y, то он уже не будет виден. А надо чтобы он перекрыл Dialog.

Пример кода:

Dialog {
    Column {
        anchors.fill: parent
        anchors.leftMargin: 17
        anchors.rightMargin: 17
        anchors.topMargin: 17
        anchors.bottomMargin: 17
        clip: true
        spacing: 6

        Button {
            id: acceptButton
            anchors.left: parent.left
            anchors.right: parent.right
            text: "OK"
            color: "#ad0f11"
        }

        Button {
            id: showInfoButton
            anchors.left: parent.left
            anchors.right: parent.right
            text: "Show info"
        }

        Button {
            id: cancelButton
            anchors.left: parent.left
            anchors.right: parent.right
            text: "Cancel"
        }
    }

    Rectangle{
        id: certificateInfo
        visible: false
        color: "gray"
        width: parent.width
        height: parent.height

        Button {
            id: certificateInfoCancelButton
            anchors.left: parent.left
            anchors.right: parent.right
            text: "Cancel"
            onClicked: {
                certificateInfo.visible = !certificateInfo.visible
            }
        }
    }
}

Буду признателен за совет. Спасибо


параметр z-index пробовал?

anonymous
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.