标签:
QT Creator下载
http://pan.baidu.com/s/1hsqBQPe
文件名
qt-opensource-windows-x86-mingw492-5.6.0
相当大,装好之后5G。
#include <QApplication> #include <QLabel> int main(int argc, char *argv[]) { QApplication a(argc, argv); QLabel *label = new QLabel("Hello, world!"); label->show(); return a.exec(); }
SOURCES += helloworld.cpp QT += widgets
标签:
原文地址:http://blog.csdn.net/bcbobo21cn/article/details/51317199