上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 51 下一页
摘要: 转载来自:https://www.cnblogs.com/LCCRNblog/p/4652374.html #include <iostream> #include <string> #include <map> #include <windows.h> #include <TlHelp32.h> 阅读全文
posted @ 2021-11-30 14:37 冰糖葫芦很乖 阅读(4090) 评论(0) 推荐(0) 编辑
摘要: chrome/installer/mini_installer/chrome.release中有打包文件 只要在 这里添加就行 阅读全文
posted @ 2021-11-30 14:09 冰糖葫芦很乖 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 新建一个文件夹 把 build-文件名-Desktop_Qt_5_14_2_MSVC2017_64bit-Release release下的文件 exe放到一个新的文件夹下 记得把自己新增的也加进去 不然无法执行 然后 搜索qt得到这个 然后进入到你exe放置的文件夹下 之后就开始执行windepl 阅读全文
posted @ 2021-11-29 17:59 冰糖葫芦很乖 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 转载来自:https://blog.csdn.net/liang19890820/article/details/52702523?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_utm_term~default- 阅读全文
posted @ 2021-11-29 17:41 冰糖葫芦很乖 阅读(1131) 评论(0) 推荐(0) 编辑
摘要: 这样子可以 主函数下 类下 QFile styleFIle(":/qss/stylesheet.qss"); styleFIle.open(QIODevice::ReadOnly); QString StyleSheet(styleFIle.readAll()); this->setStyleShe 阅读全文
posted @ 2021-11-26 11:59 冰糖葫芦很乖 阅读(86) 评论(0) 推荐(0) 编辑
摘要: Qt学习文档转载来自:https://blog.51cto.com/u_9291927/1861166 具体可以看大神的 很清晰 一、QT Creator工程管理QT Creator以工程项目的方式对源码进行管理,一个QT工程中包含不同类型的文件如下: A、.pro项目描述文件 B、.pro.use 阅读全文
posted @ 2021-11-25 16:16 冰糖葫芦很乖 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 转载来自:https://www.2cto.com/kf/201302/191602.html 在用QT编写界面时,去掉标题栏方法比较简单,就一行代码 this->setWindowFlags(Qt::FramelessWindowHint); 去掉以后又发现一个问题,就是不能移动窗口了,于是我就重 阅读全文
posted @ 2021-11-25 15:59 冰糖葫芦很乖 阅读(2123) 评论(0) 推荐(0) 编辑
摘要: wchar_t fileName[FILENAME_MAX]; GetModuleFileName(NULL, fileName, FILENAME_MAX); *wcsrchr(fileName, '\\') = '\0'; wcscat_s(fileName, FILENAME_MAX, L"\ 阅读全文
posted @ 2021-11-25 14:35 冰糖葫芦很乖 阅读(89) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/tangaowen/article/details/5728682 //返回的是地址char *strchr( const char *string, int c );wchar_t *wcschr( const wchar_t *string, wcha 阅读全文
posted @ 2021-11-25 14:27 冰糖葫芦很乖 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 转载来自:https://blog.csdn.net/qq_35789421/article/details/99303837 main.cpp 是实现 main() 函数的文件,下面是 main.cpp 文件的内容。 #include "widget.h" #include <QApplicati 阅读全文
posted @ 2021-11-25 13:50 冰糖葫芦很乖 阅读(50) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 51 下一页