QtQuick、QML - 如何将一个项目的子项目复制到另一个项目?

发布于 2024-11-19 02:16:56 字数 353 浏览 3 评论 0原文

使用 QML,我想将一个项目的子项复制到另一个项目。这是我尝试过的:

Item
{
    id: itemOne;
    Component.onCompleted: {  children.push(itemTwo.children[0]);  }
}

Row
{   // has many children

    id: itemTwo;
    Image {}
    Image {}
    Image {}
}

我收到如下错误: TypeError: 表达式 'children.push' [undefined] 的结果不是函数。那么我该如何复制孩子呢?我很感激任何建议

- 棘手

Using QML, I'd like to copy one Item's child to another. Here's what I tried:

Item
{
    id: itemOne;
    Component.onCompleted: {  children.push(itemTwo.children[0]);  }
}

Row
{   // has many children

    id: itemTwo;
    Image {}
    Image {}
    Image {}
}

I get an error like: TypeError: Result of expression 'children.push' [undefined] is not a function. So how do I copy children over then? I'd appreciate any advice

-tricky

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葬心 2024-11-26 02:16:56

无法复制项目,因为它不能有多个父项。

不要复制,而是尝试动态创建新的子项,如此处中所述,并且传递“itemTwo”作为新子项的父项的 id。

An item cannot be copied because it cannot have multiple parents.

Instead of copying, try creating the new child dynamically, as described in here, and pass 'itemTwo' as the id for the parent of the new child.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文