抽屉重叠按钮QML

时间:2017-03-11 12:44:02

标签: qt qml

在下面的示例中,Button组件不起作用,因为Drawer dragMargin重叠它。

import QtQuick 2.7
import QtQuick.Controls 2.0

ApplicationWindow {
    id: window
    visible: true
    width: 640
    height: 480
    title: qsTr("Drawer example")

Drawer {
        id: menu
        dragMargin: 60
        width: window.width * 0.85
        height: window.height
        background: Rectangle {
            color: "blue"
        }
    }
    Button {
        id: log
        text: "Click me!"
        anchors.top: parent.top
        anchors.left: parent.left
        onClicked: {
            console.log("Clicked!");
        }
    }
}

有没有办法解决这个问题?我试图更改z属性,但它不起作用。

1 个答案:

答案 0 :(得分:0)

我在Qt论坛上发现了link。似乎所描述的问题是Qt要解决的一个悬而未决的问题。