新增一個<空的Qt專案>
輸入名稱:HTMLAwareWidgets
點選專案後按滑鼠右鍵,點選<新增檔案>
輸入名稱main.cpp
可以看到剛才新增的main.cpp已經自動加入HTMLAwareWidgets.pro中SOURCES
Qt5需要在第一行插入widgets
1: greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
2:
3: SOURCES += \
4: main.cpp
接著, 編輯main.cpp
#include <QApplication>
#include <QLabel>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QLabel *label = new QLabel("Hello world");
label->show();
return app.exec();
}
Compile this!
QLabel *label = new QLabel("<b>Hello</b> <i>world<i>");
QLabel *label = new QLabel("<h2>Hello</h2> <font color=red>world</red>");
參考來源: C++ Qt 07 - Basic Application and HTML Aware Widgets
source code: HTMLAwareWidgets
文章標籤
全站熱搜
留言列表