⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 7_7.cpp

📁 一个qt设计的教程
💻 CPP
字号:
#include <qapplication.h>#include <qwidget.h>#include <qspinbox.h>class MyMainWindow:public QWidget{ public:    MyMainWindow(); private:    QSpinBox *spinbox;};MyMainWindow::MyMainWindow(){ setGeometry(100,100,150,50);  spinbox = new QSpinBox(0,100,5,this); spinbox->setGeometry(50,10,50,30);}main(int argc,char **argv){ QApplication a(argc,argv); MyMainWindow w; a.setMainWidget(&w); w.show(); a.exec();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -