资源简介
## QtQuick开发需要C++基础和JS基础
* 掌握必要的C++基础是学习和使用QtQuick框架的重要基石
## QCustomPlot能做什么
* 可以在QWidget大放异彩,绘制各种图表和曲线
* 也可以在QtQuick大展拳脚
## 基于QtQuick的QCustomPlot实现
* 继承QQuickPaintedItem类 实现绘制
代码片段和文件信息
#include
//#include
#include
#include
#include “qmlplot.h“
int main(int argc char *argv[])
{
QApplication a(argc argv);
// QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
// QGuiApplication app(argc argv);
qmlRegisterType(“CustomPlot“ 1 0 “CustomPlotItem“);
qmlRegisterType(“CustomPlot“ 1 0 “CustomPlotBarItem“);
qmlRegisterType(“CustomPlot“ 1 0 “CustomKLine“);//CustomColorMap
qmlRegisterType(“CustomPlot“ 1 0 “CustomColorMap“);
qmlRegisterType(“CustomPlot“ 1 0 “CustomBarChart“);
QQmlApplicationEngine engine;
engine.load(QUrl(QLatin1String(“qrc:/main.qml“)));
return a.exec();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 391 2019-03-06 10:43 qml.qrc
文件 19819 2019-02-27 14:30 qmlplot.cpp
文件 2241 2019-02-27 14:26 qmlplot.h
文件 1310 2019-02-28 14:58 qmlplot.pro
文件 309 2017-03-21 21:14 qtquickcontrols2.conf
文件 4785 2019-03-19 18:16 README.md
文件 411 2019-02-28 14:59 combox.xm
文件 278 2019-02-27 14:30 CustomBarCharts.qml
文件 275 2019-02-27 14:24 CustomColorMap.qml
文件 272 2019-02-27 14:24 CustomKLine.qml
文件 309 2019-02-25 18:31 CustomPlotBar.qml
文件 1685 2019-03-06 10:47 DDRubberband.qml
文件 822 2019-02-27 14:28 main.cpp
文件 1875 2019-03-06 10:45 main.qml
文件 264 2017-03-21 21:14 PlotView.qml
文件 1098093 2017-03-21 21:14 qcustomplot.cpp
文件 262589 2017-03-21 21:14 qcustomplot.h
- 上一篇:matlab 调用face_landmark接口
- 下一篇:四种VC表格控件源码
相关资源
- QTP 运行报:Microslft Visual C++ Runtime Lib
- C++学习路线视频全套
- 基于Qt5.9Creator的一个简单socket通信C
- 基于qt5.8写的一个贝塞尔曲线非转存
- waterProcess.zip
- QT C++检测计算机软硬件信息
- qt 遮罩背景
- QT C++ 算法 广搜BFS 最小步数解二阶魔
- PyQt5:pyCharts 绘制饼图
- C++ GUI Qt 4编程 (第二版) [超清版1
- C++ QT SMTP 发送邮件(最新,成功的)
- Qt4 For Dev-Cpp Templates
- 基于Qt的C++架构模型MVC在C++后端管理系
- 基于QT的象棋
- 基于QT的用C++编写的中国象棋软件源代
- Qt5利用Qwt实现动态绘图
- Qt图片查看器
- QT5.7视频播放qi
- qt qml c++ 折线图
- 基于Qt的直升机运行
- microphone.zip
- QT C++ 多线程支持多串口通信
- 基于QT的网络聊天室和服务器
- FSME有限状态机生成器
- QT录屏源码 ,无BUG
- QT实现SNTP服务
- Qt-C++实现文件浏览器
- 基于QT的局域网聊天软件开发文献综述
- C++ Qt5实现RSA加解密
- QT编写的电子时钟 c++源码
评论
共有 条评论