繁体   English   中英

是否可以从C ++创建Qml组件?

[英]Is it possible to create a Qml Component from C++?

有什么方法可以从C ++创建/附加QML组件吗?

例如,如果我有此QML:

Window {
    id: window
    objectName: "windowName"
    title: "windowName"
    width: 480
    height: 800

    Rectangle {
        id: frmHeader
        objectName: "frmHeader"
        width: parent.width
        height: parent.height
    }
}

是否可以在Rectangle上追加TextInput

在您的情况下,您应该执行以下步骤:

  • 通过findChild使用objectName查找项目。

  • 用QQmlComponent创建项目

  • 项添加为属性。

main.cpp

#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QQmlComponent>
#include <QQmlProperty>

int main(int argc, char *argv[])
{
    QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);

    QGuiApplication app(argc, argv);

    QQmlApplicationEngine engine;
    engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
    if (engine.rootObjects().isEmpty())
        return -1;

    QObject *frmHeader = engine.rootObjects().first()->findChild<QObject *>("frmHeader");
    QQmlComponent component(&engine);
    component.setData("import QtQuick 2.7 \n"
                      "TextInput{ \n"
                      "text: \"hello world :D\" \n"
                      "}", QUrl());
    QObject *text_object = component.create();
    if(text_object && frmHeader)
        Q_ASSERT(QQmlProperty::write(text_object,
                                     "parent",
                                     QVariant::fromValue(frmHeader)));

    return app.exec();
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM