2012年8月27日
摘要: 自定义类CLoginDlg,继承QDialoglogindlg.h//对CLoginDlg的声明,包括构造函数的声明,成员函数,成员变量的声明#ifndef LOGINDLG_H#define LOGINDLG_H#include <QtGui/QDialog>class QLineEdit;//注意:这是类CLineEdit的传递声明,因为在下面使用到了CLineEdit对象指针class CLoginDlg : public QDialog{Q_OBJECTpublic:CLoginDlg(QWidget* = 0);//构造函数的声明,QWidget是它的顶级父类virtua 阅读全文
posted @ 2012-08-27 16:22 Jiang, X. 阅读(515) 评论(0) 推荐(0) 编辑
摘要: There are two main factors to start a Qt program:1. In the 'Project' menu, select 'Release';2. Copy the files in 'bin' to the folder of the program. 阅读全文
posted @ 2012-08-27 15:24 Jiang, X. 阅读(238) 评论(1) 推荐(0) 编辑