错误:QMainWindow: No such file or directory 解决方法

来源:互联网 发布:微信免签约支付接口php 编辑:程序博客网 时间:2024/06/05 21:10

出现错误的原因暂不清楚

#include <QMainWindow>  
改为
#include <QtWidgets>
并且在.pro文件中加上
QT       += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

2 0