新增一個<空的Qt專案>

image

輸入名稱:HTMLAwareWidgets

image

點選專案後按滑鼠右鍵,點選<新增檔案>

image

image

輸入名稱main.cpp

image

可以看到剛才新增的main.cpp已經自動加入HTMLAwareWidgets.pro中SOURCES

image

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!

image

QLabel *label = new QLabel("<b>Hello</b> <i>world<i>");

image

QLabel *label = new QLabel("<h2>Hello</h2> <font color=red>world</red>");

image

參考來源: C++ Qt 07 - Basic Application and HTML Aware Widgets

source code: HTMLAwareWidgets

arrow
arrow
    文章標籤
    Qt5.1
    全站熱搜
    創作者介紹
    創作者 me1237guy 的頭像
    me1237guy

    天天向上

    me1237guy 發表在 痞客邦 留言(0) 人氣()