Hello Qt
Posted 徐岩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hello Qt相关的知识,希望对你有一定的参考价值。
版本:Qt 5.5.1 Windows
参考: C++ GUI Programming with Qt 4 Second Edition
1. 打开 Qt Creator,File -> New Project -> Other Project -> Empty qmake project
2. 建立 HelloQt.pro,然后添加 main.cpp
3. 在 HelloQt.pro 中加入 QT += widgets
最终如下所示:
HelloQt.pro
SOURCES += main.cpp
QT += widgets
main.cpp
#include <QApplication> #include <QLabel> int main(int argc, char *argv[]) { QApplication app(argc, argv); QLabel *label = new QLabel("<h2><i>Hello</i> " "<font color=red>Qt!</font></h2>"); label->show(); return app.exec(); }
以上是关于Hello Qt的主要内容,如果未能解决你的问题,请参考以下文章