注册 登录
编程论坛 QT论坛

属于QT的《世界,你好!》

hackerjiang 发布于 2010-11-10 12:40, 1462 次点击
截图:
只有本站会员才能查看附件,请 登录


#-------------------------------------------------
#
# Project created by QtCreator 2010-11-09T20:49:24
#
#-------------------------------------------------


QT       += core

TARGET = untitled
CONFIG   += app
CONFIG   -= app_bundle

TEMPLATE = app

SOURCES += main.cpp


以上是工程文件的配置,下面是源代码:

#include<QtGui/QApplication>
#include<QtGui/QWidget>
#include<QtGui/QLabel>
#include<QtCore/QTextCodec>

int main(int argc,char* argv[])
{
    QApplication app(argc,argv);
    QTextCodec::setCodecForTr(QTextCodec::codecForName("gb18030"));
    QWidget* pWidget = new QWidget;
    QLabel label(pWidget);
    label.setText(QObject::tr("世界,你好!"));
    pWidget->show();
    return app.exec();
}


[ 本帖最后由 hackerjiang 于 2010-11-10 12:42 编辑 ]
5 回复
#2
su8585145582010-11-10 21:17
新手过来看看
#3
applechen_cw2010-11-22 20:38
逛逛
#4
lucky5635912011-03-24 07:58
从今天起学习Qt
#5
烟花沼泽2011-11-22 16:44
打酱油的路过
#6
Dyang20122012-07-13 10:25
看看
1