
Qt编程
文章平均质量分 80
Sunrise0929
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Qt精彩实例(3)
实例8.进程条这个必须要在.pro文件下加入:QT += testlib 这样才能解决这样的bug。error:collect2: ld returned 1 exit statusprogress.h#ifndef PROGRESS_H#define PROGRESS_H#include class Progress:public QDialog{原创 2013-08-13 10:57:27 · 597 阅读 · 0 评论 -
Qt精彩实例(4)& 自己实现的软件管家界面
实例12.qq用户资料修改layoutdlg.h#ifndef LAYOUTDLG_H#define LAYOUTDLG_H#include class layoutdlg:public QDialog{ //Q_OBJECTpublic: layoutdlg(QWidget *parent=0, Qt::WindowFlags f原创 2013-08-13 10:57:32 · 978 阅读 · 0 评论 -
Qt精彩实例(2)
实例5.各种消息框dialog.h#ifndef DIALOG_H#define DIALOG_H#include #include #include namespace Ui { class Dialog;}class Dialog : public QDialog{ Q_OBJECTpub原创 2013-08-13 10:57:25 · 587 阅读 · 0 评论 -
Qt精彩实例(1)
实例1.helloworldhello.cpp#include #include int main(int argc,char *argv[]){ QApplication app(argc, argv); QPushButton b("hello world"); b.show(); QObject::connec原创 2013-08-13 10:57:23 · 855 阅读 · 0 评论