Qt 设置窗口初始位置居中时出错: member access into incomplete type

//将窗口移动到屏幕中间
w.move ((QApplication::desktop()->width() - w.width())/2,(QApplication::desktop()->height() - w.height())/2);

错误描述:

member access into incomplete type
在这里插入图片描述

解决方案:

加入头文件 QDesktopWidget

#include

问题解决

你可能感兴趣的:(错误解决方案,qt-creator)