#include <QDesktopWidget> void Dialog::setDisplayPos() { QDesktopWidget *desktop = QApplication::desktop(); // 获取显示器个数 int num = desktop->screenCount(); // 设置窗口显示到扩展屏上 // 如果有两个显示器,num=2,默认主屏index=0,扩展屏index=1 this->setGeometry(desktop->screenGeometry(1)); }
标签:index,窗口,Qt,扩展,desktop,num From: https://www.cnblogs.com/shiyixirui/p/17711417.html