1.Qt之msvc-version.conf loaded but QMAKE_MSC_VER isn't set
解决方法 :在lib 中\mkspecs\common\msvc-version.conf 文件中添加 指定msvc 版本 1900 是2015
2.Qt编译通过,运行时出现the process was ended forcefully问题的解决方案
参考 Qt编译通过,运行时出现the process was ended forcefully问题的解决方案_ZyxHsi的博客-CSDN博客
3.Qt程序显示控制台调试信息
参考Qt程序显示控制台调试信息_lusanshui的博客-CSDN博客_qt程序打开控制台
4.Qt 工程转VS 工程
Qt工程转换成VS工程_全宏的博客-CSDN博客_qt项目转vs
5.QtMaintenanceTool 国内更新地址
http://mirrors.ustc.edu.cn/qtproject/online/qtsdkrepository/windows_x86/root/qt/
https://mirrors.tuna.tsinghua.edu.cn/qt/online/qtsdkrepository/windows_x86/root/qt/
http://mirror.bit.edu.cn/qtproject/online/qtsdkrepository/windows_x86/root/qt/
6.Qlistwidget 样式表中不能设置未选中的背景图片
list->setStyleSheet(
"QListWidget::item:hover {background-image:url(:/select.png);}"
"QListWidget::item:selected{background-image:url(:/select.png);}"
//"QListWidget::item:selected:!active{background:red;}"
"QListWidget{ outLine:0px;}"
"QListWidget::item{color:white;}"
);
list->setFrameShape(QListWidget::NoFrame);//使 listwidget 无边框
list->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
list->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);//隐藏垂直水平滚动条
通过 setbackground 进行未选中的背景颜色设置,设置必须在setstylesheet的后面
list->item(i)->setBackground(QBrush(QPixmap(":/no_select.png")));
7.qcustomplot 使用
1. QCustomPlot 使用整理 - Biiigfish - 博客园
3.QCustomPlot 官方文档学习1_llC2018的博客-CSDN博客
4.Qt开发笔记之QCustomPlot:QCustomPlot介绍、编译与使用_长沙红胖子Qt的博客-CSDN博客_qcustomplot
8.编译器堆空间不足(资源文件比较大)
在.pro 文件里面加上 CONFIG += resources_big
9.QT错误Unknown module(s) in QT: webenginewidgets
webenginewidgets 支持 msvc 版本
10.qt 确保应用程序只启动一次
https://github.com/qtproject/qt-solutions/tree/master/qtsingleapplication
11.qt 和标准mfc 互相嵌入
https://github.com/qtproject/qt-solutions/tree/master/qtwinmigrate
持续更新中。。。