码迷,mamicode.com
首页 > 其他好文 > 详细

Hello,Qt!

时间:2014-05-21 19:54:45      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   c   code   java   

bubuko.com,布布扣
 1 #include <QApplication>
 2 #include <QLabel>
 3 #include <QtCore/QTextCodec>
 4 #include <Qtgui/QDialog>
 5 #include <Qtextcodec.h>
 6 
 7 
 8 int main(int argc, char **argv)
 9 {
10     QApplication app(argc, argv);
11 
12     QTextCodec::setCodecForTr(QTextCodec::codecForLocale());
13     QTextCodec::setCodecForCStrings(QTextCodec::codecForLocale());
14     QLabel *label = new QLabel();
15     label->setText(QString::fromUtf8("<h2><i>Hello!</i>"
16                                      "<font color = red>你好!</font></h2>" ));
17     label->show();
18 
19     return app.exec();
20 }
bubuko.com,布布扣

 

Hello,Qt!,布布扣,bubuko.com

Hello,Qt!

标签:style   blog   class   c   code   java   

原文地址:http://www.cnblogs.com/yongjiuzhizhen/p/3740060.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!