使用C++编写的一个Find(查找)对话框例子
摘要:
//findDialog.h 头文件 1 //finddialog.h 2 #ifndef FINDDIALOG_H 3 #define FINDDIALOG_H 4 5 #include 6 7 class QCheckBox; 8 class QLabel; 9 class QLineEdit;10 class QPushButton;11 12 13 class FindDialog : public QDialog14 {15 Q_OBJECT16 17 public:18 FindDialog(QWidget *parent = 0);19 signals:20... 阅读全文
posted @ 2014-01-15 09:47 Sam.Richard 阅读(1274) 评论(0) 推荐(0) 编辑