-2

我应该使用什么 qml 小部件来创建可折叠容器?我找不到它。

示例(来自 Qt Creator):

在此处输入图像描述

4

1 回答 1

0

QML 中没有开箱即用的小部件,但自己创建它应该相当容易。这只是一个原始示例,展示了它是多么容易,但可以实现一个适当的可重用控件,类似于https://doc.qt.io/qt-5/qml-qtquick-controls2-tabbar.html

import QtQuick 2.11

Column {                                                                                                                                                                                                       

    width: 600
    height: 600

    Rectangle {
        width: parent.width
        height: 50
        color: "darkgrey"

        MouseArea {
            anchors.fill: parent
            onClicked: container.height = container.height ? 0 : 500
        }
    }

    Rectangle {
        id: container
        width: parent.width
        height: 500
        color: "grey"
    }
}
于 2018-10-07T15:32:11.203 回答