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

📄 01_03.cpp

📁 qt实例!24小时学习其他的东西!已经调试ok!用的qt2.3.7哈
💻 CPP
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -