spark-qt-research/Components/MultiplethreadDownload/main.cpp

14 lines
276 B
C++
Raw Permalink Normal View History

2020-10-25 20:03:47 +08:00
#include "widget.h"
#include <QApplication>
#include <QScreen>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
w.move(QApplication::screens().at(0)->geometry().center() - w.frameGeometry().center());
return a.exec();
}