欢迎访问我的独立博客
摘要: 一,Hello Qt#include <QApplication>#include <QLabel>int main(int argc, char *argv[]){ QApplication app(argc, argv); QLabel *label = new QLabel("Hello Qt!"); label->show(); return app.exec();}二,信号与槽#include <QApplication>#include <QPushButton>int main(int argc, char 阅读全文
posted @ 2012-12-22 09:13 github.com/starRTC 阅读(294) 评论(0) 推荐(0) 编辑