Qt窗口在屏幕上居中显示

方法 1、mian函数中

    MainWindow w;
    w.show();
   w.move ((QApplication::desktop()->width() - w.width())/2,(QApplication::desktop()->height() - w.height())/2);

 

 

方法2、MainWindow 的构造函数中

   MainWindow::MainWindow()

{

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

}

你可能感兴趣的:(Qt窗口在屏幕上居中显示)