Qt窗口居中

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

第一种方法我用得很好,第二种方法试了,没效果,可能没试好。

你可能感兴趣的:(Qt)