QT中还可以支持HTML语言,比较好玩
时间:2011-05-21 来源:Leo Chin
#include <QApplication>
#include <QLabel>
int main(int argc, char *argv[])
{
QApplication app(argc,argv);
QLabel hello("<h2><i>hello</i> <font color=red>QT!</font></h2>",0);
hello.show();
return app.exec();
}
效果如下:
相关阅读 更多 +