资源简介
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\Jsc
文件 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
- 上一篇:B-树的源代码
- 下一篇:快速的将YUV444转成YUV420格式数据
相关资源
- qt 线程操作
- qt 抽屉式对话框开发教程
- 基于Qt的VTK应用程序代码
- qt写扫雷程序
- qt源码ftp文件上传
- qml treeview
- c++ 数字键盘设计(源码)
- QT4.8画曲线、饼图、棒图
- Qt4 图形设计与嵌入式开发 源代码
- qt tabwidget
- 多窗口文本工具(qt源码)
- Qt5+QtChart绘制饼图
- qt 快速读取excel代码
- 对qt窗体进行简单操作(修改lable的值
- Qt五子棋小游戏(源码+截图)
- 基于QT5的图形化界面开发(NeuFtp)
- 监视文件目录变化(qt源码)
- QT的TCP服务器DEMO
- Linux优先级时间片调度C++源码
- c++ RoyCardTableView 列表插入
- TQQTableView 实现qq效果
- qt5 旋转(.patch文件源码)
- 电机控制平台(c++源码)
- PID 控制算法实现(fuzzy-PID-controller)
- c++ 获取当前执行位置的调用栈
- windows文件夹监控(c++源码)
- C++ tts开发 可调节语速,音量,切换语
- c++(3_MSGS.C)
- c++实现P2PDemo(点对点聊天)
- windows 串口升级工具(c++源码)
评论
共有 条评论