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

Hello Qt

时间:2016-03-31 23:31:37      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

版本:Qt 5.5.1 Windows 

参考: C++ GUI Programming with Qt 4 Second Edition

1. 打开 Qt Creator,File -> New Project -> Other Project -> Empty qmake project

2. 建立 HelloQt.pro,然后添加 main.cpp 

3. 在 HelloQt.pro 中加入 QT += widgets

最终如下所示:

HelloQt.pro

SOURCES +=     main.cpp

QT += widgets

main.cpp

#include <QApplication>
#include <QLabel>

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    QLabel *label = new QLabel("<h2><i>Hello</i> "
                               "<font color=red>Qt!</font></h2>");
    label->show();
    return app.exec();
}

 

Hello Qt

标签:

原文地址:http://www.cnblogs.com/xuyan505/p/5343145.html

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