QT 4
文章平均质量分 74
thmono
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
main.cpp for ui file
//if you want to run ui file(QT designer),this is its main.cpp demonstration#include #include #include "ui_gotocelldialog.h"int main(int argc, char *argv[]){QApplication app(argc, argv);原创 2009-11-29 16:52:00 · 459 阅读 · 0 评论 -
practive QT layout in coding
//find_dialog.cpp//practice QT layout//note: & means shortcut key#include#include#include#include#include#include#include#includeint main(int argc,char *argv[]){ QApplicat原创 2009-11-29 16:46:00 · 736 阅读 · 0 评论 -
hasAcceptableInput()
//hasAcceptableInput())//name find.cpp//validate UI#include "find.h"#include "ui_find.h"find::find(QWidget *parent) : QMainWindow(parent), ui(new Ui::find){ ui->setupUi(this);原创 2009-12-09 16:46:00 · 1574 阅读 · 0 评论 -
morebutton
//morebutton.cpp//note:the checkable property of morebutton must be choosed// ,or this button can not use toggle() signal#include "morebutton.h"#include "ui_moreButton.h"moreButton::more原创 2009-12-09 16:50:00 · 619 阅读 · 0 评论 -
example of QGridLayout
#include "find.h"#include//find.cpp//example of QGridLayoutclass QLabel;class QPushButton;class QCheckBox;class QTableWidget;findDialog::findDialog(QWidget *parent):QDialog(parent)原创 2009-12-12 16:17:00 · 955 阅读 · 0 评论
分享