此代碼錯誤的Qt程序
#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: there is no such directory
我使用Qt 5.0.1在Windows
'QLabel * label = new QLebel(「我的第一個應用程序」);'這是如何在你的代碼行或是一種類型? 'QLebel' – SlxS 2013-04-10 15:31:30
另外,當你使用'QtWidgets/QApplication'時,它不應該是'QtGui/QLabel'嗎? – 2013-04-10 15:32:14
你能複製並粘貼* exact *錯誤信息嗎? – 2013-04-10 15:34:14