11

我正在使用 QML,我想动态地将元素添加到 SplitView,例如。onMouseClick,但到目前为止我还没有找到答案。

到目前为止,我发现SplitView它的默认属性设置为它的第一个孩子的data属性。所以我想我应该尝试添加新的动态创建的组件,并将父级设置为该子级(splitView1.children[0])。不幸的是,这也不起作用。更重要的是,在组件完成加载后,第一个孩子的孩子数量为零(似乎 SplitLayout 的 Component.onCompleted 事件调用了一个将这些孩子移动到其他地方的函数)。因此,添加的子项不会呈现(并且不会响应任何 Layout 附加属性)。

请看下面的代码片段:

import QtQuick 2.1
import QtQuick.Controls 1.0
import QtQuick.Layouts 1.0

ApplicationWindow {
    width: 600
    height: 400

    SplitView {
        anchors.fill: parent

        Rectangle {
            id: column
            width: 200
            Layout.minimumWidth: 100
            Layout.maximumWidth: 300
            color: "lightsteelblue"
        }

        SplitView {
            id: splitView1
            orientation: Qt.Vertical
            Layout.fillWidth: true

            Rectangle {
                id: row1
                height: 200
                color: "lightblue"
                Layout.minimumHeight: 1
            }

//            Rectangle {               //I want to add Rectangle to splitView1 like this one, but dynamicly eg.onMouseClick
//                color: "blue"
//            }
        }
    }

    MouseArea {
        id: clickArea
        anchors.fill: parent
        onClicked: {
            console.debug("clicked!")
            console.debug("len: " + splitView1.__contents.length); // __contents is the SplitView's default property - an alias to the first child's data property

            var newObject = Qt.createQmlObject('import QtQuick 2.1; Rectangle {color: "blue"}',
                splitView1, "dynamicSnippet1"); //no effect

//            var newObject = Qt.createQmlObject('import QtQuick 2.1; import QtQuick.Layouts 1.0; Rectangle {color: "blue"; width: 50; height: 50}',
//                splitView1, "dynamicSnippet1"); //rectangle visible, but not in layout(?) - not resizeable
        }
    }
}

有什么方法可以使动态创建的组件在SplitView静态添加的组件中正确呈现?

4

4 回答 4

3

该 API 似乎不支持动态插入新元素。即使你确实让它工作,它也将是一个 hack,并且可能会在未来的版本中中断。您可能需要滚动自己的控件来模仿您想要的行为。理想情况下,它应该得到某种模型的支持。

于 2013-07-29T18:18:56.497 回答
2

从 QtQuick Controls 1.3 开始,SplitView有一个addItem(item) 方法.

于 2015-01-04T12:10:14.637 回答
0

您必须使用 Loader 来加载动态对象。在 onClicked 句柄中,您必须声明 sourceComponent 属性以更改加载器的源,如下所示:

ApplicationWindow {
width: 600
height: 400

SplitView {
    anchors.fill: parent

    Rectangle {
        id: column
        width: 200
        Layout.minimumWidth: 100
        Layout.maximumWidth: 300
        color: "lightsteelblue"
    }

    SplitView {
        id: splitView1
        orientation: Qt.Vertical
        Layout.fillWidth: true

        Rectangle {
            id: row1
            height: 200
            color: "lightblue"
            Layout.minimumHeight: 1
        }
     Loader {
         id:rect
     }


    }
}

MouseArea {
    id: clickArea
    anchors.fill: parent
    onClicked: {
        console.debug("clicked!")
        console.debug("len: " + splitView1.__contents.length) // __contents is the SplitView's default property - an alias to the first child's data property
        rect.sourceComponent = algo
    }
}

Component {
    id:algo
Rectangle {
    anchors.fill: parent
    color: "blue"
}
}
}
于 2014-01-24T04:20:29.120 回答
0

我看到了 SplitView 的源代码,它在 Component.onCompleted 信号时计算每个分割区域。所以我认为这是一个关键点。不管你怎么做(插入、动态创建)。插入新区域进行拆分后,该区域不会被重置。

于 2014-09-29T04:00:47.220 回答