【QT】QT如何让窗口放置在屏幕正中间

在这里我们使用QT的Qwidget窗口,类库使用QDesktopWidget

添加头文件.h

#include 

.cpp文件添加

QDesktopWidget *desktop = QApplication::desktop();
move((desktop->width()-this->width())/2,(desktop->height()-this->height())/2);

 

你可能感兴趣的:(qt)