
QT
llC2018
每天积累,每天进步,让青春更精彩!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
QCustomPlot 官方文档学习1
用一些实例来作为QCustomPlot学习的指南,如果用QtCreater 提升一个Widget,就能够通过 ui->customPlot或者其他的名字访问各个Widget;You can create a new graph in the plot via customPlot->addGraph(). Then you assign the graph some ...翻译 2018-07-18 16:14:22 · 4133 阅读 · 0 评论 -
Q_OBJECT 重要性
编写一个电子时钟demo,发现槽函数不存在,原因是没有在类的开头添加Q_OBJECT宏#ifndef DIGICLOCK_H#define DIGICLOCK_H#include <QLCDNumber>class DigiClock : public QLCDNumber{ //Q_OBJECTpublic: DigiClock(); vo...原创 2018-08-23 19:33:38 · 1611 阅读 · 0 评论