?? 2_6.cpp
字號:
#include <qapplication.h>#include <qwidget.h>#include <qpushbutton.h>class myclass:public QWidget{public: myclass();private: QPushButton *b1;};myclass::myclass(){ this->setMinimumSize(200,200); this->setMaximumSize(200,200); b1 = new QPushButton("Hello",this); b1->setGeometry(20,20,160,160);}int main (int argc,char **argv){ QApplication a(argc,argv); myclass w; a.setMainWidget(&w); w.show(); return a.exec();}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -