Qt視窗在螢幕上居中顯示

烏龜啊快跑發表於2011-12-20

方法 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);

}

相關文章