1. 程式人生 > >Qt學習筆記1-Basic Application and HTML Aware Widgets

Qt學習筆記1-Basic Application and HTML Aware Widgets

前言:接下來會記錄些Qt的學習筆記,筆記都是來自於Youtube上的一個教程,網址如下:

今天的內容是關於如何在Qt中使用HTML的,看以下例子:

#include <QApplication>
#include <QLabel>

int main(int argc, char* argv[])
{
    QApplication app(argc,argv);
//    QLabel *label = new QLabel("<b>hello</b> <i>world</i>");
//    QLabel *label = new QLabel("<h2>hello</h2> <font color = red><i>world</i><font>");
    QLabel *label = new QLabel("<h2>hello <font color = red><i>world</i><font></h2>");

    label->show();
    return app.exec();
}