# QT-QPushButton QPushButton Class | Header: | #include <QPushButton> || | || qmake:(模块) | QT += widgets || Inherits:(继承) | [QAbstractButton](qabstrac ...
分类:
其他好文 时间:
2020-12-22 12:34:05
阅读次数:
0
.pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 4 5 CONFIG += c++11 6 7 # The following define makes your compiler emit warn ...
.pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 4 5 CONFIG += c++11 6 7 # The following define makes your compiler emit warn ...
我的电脑配置:win10 开发环境:VS2019+Qt5.14.2 问题:程序开发完成后将debug下的.exe发给其他同事使用,回复说“找不到VCRUNTIME140.dll……”问题 网上找了下解决该问题的办法,很多,最终选了下面的方法: 方法三:选择静态编译。项目属性-配置属性-C/C+±代码 ...
分类:
其他好文 时间:
2020-12-17 12:04:02
阅读次数:
2
Microsoft Word Application Reference The Microsoft Word Application COM object is a QAxObject with the CLSID {000209ff-0000-0000-c000-000000000046}. I ...
分类:
移动开发 时间:
2020-12-11 12:08:51
阅读次数:
6
0. 前言 最近有个需求,就是需要在QT(C++)中移植lua脚本。达到可以动态更新软件功能。lua是一门脚本语言。常用于各类编程语言,作为脚本。特别是游戏行业,据说很多用lua脚本来写业务逻辑。本次分为两种调用,一种是QT调用Lua,这种比较简单。利用Lua源码编译后,直接就可以使用。另外一种是L ...
分类:
其他好文 时间:
2020-12-11 11:52:18
阅读次数:
4
void Widget::on_actFontBold_triggered(bool checked) { QTextCharFormat fmt; fmt = ui->txtEdit->currentCharFormat(); if(checked) fmt.setFontWeight(QFont ...
分类:
其他好文 时间:
2020-12-10 11:26:33
阅读次数:
4
1. Qt Creator -> File -> New File or Project -> Qt -> Qt Resource File ->添加但当前项目 2. 创建资源文件名res.qrc -> 右键 ->Open in Editor 3. 当前目录下新建文件夹images,将资源文件放在该 ...
分类:
其他好文 时间:
2020-12-09 12:07:50
阅读次数:
4
为什么需要CMake 如果你一直在windows平台上开发,使用最多的可能就是VS的开发环境,它已经集成了全套的开发环境包括构建编译等。你或许听过好几种 Make 工具,例如 GNU Make ,QT 的 qmake ,微软的 MS nmake,BSD Make(pmake),Makepp,等等。这 ...
分类:
其他好文 时间:
2020-12-03 12:25:34
阅读次数:
19
c++中使用new给类对象申请内存时,看到的用法有很多,很是疑惑。 经过观察发现了其中的秘密。 1 //构造摄像头对象 2 ca = new QCamera(ui->comboBox->currentText().toUtf8(),this); 3 //构造截屏对象 4 cap = new QCam ...
分类:
编程语言 时间:
2020-12-02 12:25:46
阅读次数:
8