01_03.cpp
来自「qt实例!24小时学习其他的东西!已经调试ok!用的qt2.3.7哈」· C++ 代码 · 共 20 行
CPP
20 行
#include <qapplication.h>
#include <qwidget.h>
#include <qpushbutton.h>
int main(int argc, char **argv)
{
QApplication a(argc, argv);
QWidget mainwindows;
mainwindows.setMinimumSize(200, 100);
mainwindows.setMaximumSize(200, 100);
QPushButton hello("Hello world!", &mainwindows);
hello.setGeometry(20, 20, 180, 60);
a.setMainWidget(&mainwindows);
mainwindows.show();
return a.exec();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?