上一页 1 2 3 4 5 6 7 8 9 10 ··· 67 下一页
摘要: QPixmap和QByteArray转换 //QPixmap->QByteArray QPixmap image("d:/aaa.png"); QByteArray bytearray; QBuffer buffer(&bytearray); buffer.open(QIODevice::Write 阅读全文
posted @ 2021-07-26 14:21 kongbursi 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 一、auto 划重点: 1、auto是推导不出来顶层const的(顶层const就是保证自己内存地址里面存放的值不会变,底层const保证的是所指向的值,值本身不会变) 2、想要auto推导出来的类型是一个引用,通过下面方式(a是变量名) auto &a; int a=3; int &b=a; au 阅读全文
posted @ 2021-07-23 15:50 kongbursi 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 当substring设置为char*的别名 typedef char *substring; 那么下面两个变量含义不同 const substring b; //常量指针 const char * c; //指向常量的指针 #include<bits/stdc++.h> using namespac 阅读全文
posted @ 2021-07-23 10:57 kongbursi 阅读(102) 评论(0) 推荐(0) 编辑
摘要: LNK2001 无法解析的外部符号 "public: virtual struct QMetaObject const * __cdecl CViewerWidget::metaObject(void)const " (?metaObject@CViewerWidget@@UEBAPEBUQMeta 阅读全文
posted @ 2021-07-22 15:49 kongbursi 阅读(2007) 评论(0) 推荐(0) 编辑
摘要: 1、.h文件导入 选择的这个文件夹必须是包含头文件.h的上一级文件夹,不要文件夹套文件夹(这个也要看你的#include语句了),举个例子 你选择的temp文件夹,temp文件夹下有one.h头文件,而且这个文件夹下还有一个temp2文件夹,这个temp2文件夹下有一个two.h,那么你想要包含tw 阅读全文
posted @ 2021-07-22 15:24 kongbursi 阅读(1237) 评论(0) 推荐(0) 编辑
摘要: 1、QTimer::singleShot函数 原型: void QTimer::singleShot ( int msec, QObject * receiver, const char * member ) [静态] 这个静态函数在一个给定时间间隔之后调用一个槽。 #include <qappli 阅读全文
posted @ 2021-07-22 14:59 kongbursi 阅读(889) 评论(0) 推荐(0) 编辑
摘要: 1、先看一下它的构造方法 (1)QSplitter(QWidget *parent = Q_NULLPTR) (2)QSplitter(Qt::Orientation orientation, QWidget *parent = Q_NULLPTR) 默认不传参数情况下调用(1),它的参数默认是Q_ 阅读全文
posted @ 2021-07-22 14:44 kongbursi 阅读(3785) 评论(0) 推荐(0) 编辑
摘要: 我开始以为是this指针出错了,但是我把所有用this指针的地方注释了,还错 最后发现这个不是this指针的问题,这个问题是你的程序出现异常就会引起。我的原因是我使用QAxObject操作EXCEL,但是那个第几列,那个列值我没有初始化所以导致了错误 阅读全文
posted @ 2021-07-20 17:21 kongbursi 阅读(1194) 评论(0) 推荐(0) 编辑
摘要: 1、创建菜单里可以通过menuBar方法,这个方法好像是QWiget的方法 QMenuBar *mBar = menuBar(); 2、添加菜单 QMenu * menu = mBar->addMenu("文件"); 3、添加菜单项 QAction * action = menu->addActio 阅读全文
posted @ 2021-07-20 17:18 kongbursi 阅读(2805) 评论(0) 推荐(0) 编辑
摘要: 1、首先给Qt添加axcontainer模块,添加步骤如下: 2、添加头文件 #include<QAxObject> 3、对EXCEL的操作,下面代码来源于 https://blog.csdn.net/A18373279153/article/details/78557209 bool adminF 阅读全文
posted @ 2021-07-20 16:59 kongbursi 阅读(936) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 67 下一页