1

这段代码

#include <QtWidgets/QApplication>
#include <QLabel>

int main(int argc,char *argv[])
{
    QApplication app(argc,argv);
    QLabel *label = new QLabel("my first app");
    label->show();
    return app.exec();
}

导致错误:

QLabel:没有这样的目录

我在 Windows 中使用 Qt 5.0.1

4

2 回答 2

2

改变

#include <QLabel>

#include <QtWidgets/QLabel> 这是QLabel实际居住的地方(如果这是QLabel你想要的)

于 2013-04-10T15:34:08.937 回答
0

将 QT += 小部件放入您的 .pro 文件中。

于 2013-04-12T23:46:33.977 回答