QT基礎(chǔ)教程 | QT入門 | 信號與槽







、、、、、、、、、、、、、、、、、、、、


infoLabel->setText("input cmd:");
#include <QApplication>//應(yīng)用,面向?qū)ο?/p>
#include <QLabel>//tag header file ,create a label
#include <QLineEdit>
#include <QPushiButton>
#include <QHBoxLayout>//horizontal layout水平布局
#include <QVBoxLayout>//vertical layout垂直布局
int main(int argc,char *argv[])
{
QApplication app(argc,argv);
QLable *infoLabel()=new QLabel;
QLable *openLabel()=new QLabel;
QLineEdit *cmdLineEdit=new QLineEdit;
QPushButton *commitButton=new QPushButton;
QPushButton *cancelButton=new QPushButton;
QPushButton *browseButton=new QPushButton;
infoLabel->setText("input cmd:");
openLabe->setText("open");
commitButton->setText("commit");
cancelButton->setText("cancel");
browseButton->setText("browse");
QHBoxLayout *cmdLayout=new QHBoxLayout;//horizontal layout object/水平布局對象;
cmdLayout->addWidget(openLabel);//Add spacebar to horizontal object將控件加到水平對象里
//addWidget()添加控件
cmdLayout->addWidget(cmdLineEdit);
return app.exec();
}

控件,標(biāo)簽,行編輯框,文本編輯框,文字,布局,水平布局對象(布局也是對象),