You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 line
340 B

  1. #include "mainwindow.h"
  2. #include <QApplication>
  3. #include<QStyleFactory>
  4. int main(int argc, char *argv[])
  5. {
  6. QApplication a(argc, argv);
  7. // 设置应用程序信息
  8. a.setApplicationName("综合平台编程器");
  9. QApplication::setStyle(QStyleFactory::create("Fusion"));
  10. MainWindow w;
  11. w.show();
  12. return a.exec();
  13. }