Qt (1) 入门

来源:互联网 发布:excel mac破解版下载 编辑:程序博客网 时间:2024/04/30 03:42


一路next 

#include <QApplication>
#include <QLabel>
#include <QPushButton>


int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    QLabel *label = new QLabel("m2222ay hello 0000000000000");
    label->show();
    return app.exec();
}


ctrl +r 



0 0