• 大小: 9KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-01
  • 语言: C/C++
  • 标签: qt  qml  c++  qml通讯  

资源简介

c++数据传入qml, qml数据返回给c++,数据互传 ,两种方式

资源截图

代码片段和文件信息

#include 
#include 
#include 
#include “mytest.h“

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

    QGuiApplication app(argc argv);
    MyTest mymsg;
    QQmlApplicationEngine engine;
    engine.rootContext()->setContextProperty(“mymsg“&mymsg);
    engine.load(QUrl(QStringLiteral(“qrc:/main.qml“)));
    if (engine.rootobjects().isEmpty())
        return -1;

    return app.exec();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1168  2019-01-10 16:13  ctoqml2\ctoqml2.pro

     文件      44174  2019-01-10 16:38  ctoqml2\ctoqml2.pro.user

     文件         66  2019-01-10 16:18  ctoqml2\Jscript.js

     文件        497  2019-01-10 16:17  ctoqml2\main.cpp

     文件       1089  2019-01-10 16:37  ctoqml2\main.qml

     文件        379  2019-01-10 16:34  ctoqml2\mytesttwo.cpp

     文件        455  2019-01-10 16:33  ctoqml2\mytesttwo.h

     文件        125  2019-01-10 16:18  ctoqml2\qml.qrc

     文件       1162  2019-01-10 15:49  ctoqml\ctoqml.pro

     文件      23988  2019-01-10 16:38  ctoqml\ctoqml.pro.user

     文件        516  2019-01-10 15:50  ctoqml\main.cpp

     文件        995  2019-01-10 16:09  ctoqml\main.qml

     文件        354  2019-01-10 16:08  ctoqml\mytest.cpp

     文件        421  2019-01-10 16:08  ctoqml\mytest.h

     文件         92  2019-01-10 15:48  ctoqml\qml.qrc

     目录          0  2019-01-10 16:38  ctoqml2

     目录          0  2019-01-10 16:38  ctoqml

----------- ---------  ---------- -----  ----

                75481                    17


评论

共有 条评论