25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
256 B

  1. #include "mainwindow.h"
  2. #include <QApplication>
  3. #include<QStyleFactory>
  4. int main(int argc, char *argv[])
  5. {
  6. QApplication::setStyle(QStyleFactory::create("Fusion"));
  7. QApplication a(argc, argv);
  8. MainWindow w;
  9. w.show();
  10. return a.exec();
  11. }