spark-qt-research/Components/MultiplethreadDownload/main.cpp
2021-03-21 15:37:39 +08:00

14 lines
276 B
C++

#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();
}