Qt視窗居中

漫步企鵝發表於2012-08-14

1、

  mw.move(QApplication::desktop().width()/2,QApplication::desktop().height()/2);

2、

int w = 800, h = 600
int x = GetSystemMetrics( SM_CXSCREEN );
int y = GetSystemMetrics( SM_CYSCREEN );
setGeometry( (x-w)/2, (y-h)/2, w, h );

第一種方法我用得很好,第二種方法試了,沒效果,可能沒試好。

相關文章