当前位置:   article > 正文

QT对于多个屏幕 要使得窗体全屏显示到对应的屏幕上的方法_qt showfullscreen 会把界面移动到另外一个屏幕上

qt showfullscreen 会把界面移动到另外一个屏幕上
void MainWindow::on_btnMenu_Max_clicked()
{
    if (max) {
        this->setGeometry(location);
        this->setProperty("canMove", true);
    } else {
        //到对应的显示器上全屏显示
        int screenIndex = QApplication::desktop()->screenNumber(this);
        // 获取指定索引的显示器的几何信息
        QRect screenGeometry = QApplication::desktop()->screenGeometry(screenIndex);
        // 设置窗口在指定显示器上全屏显示
        this->setGeometry(screenGeometry);
        this->setProperty("canMove", true);
    }   

       max = !max;
}
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/95077
推荐阅读
相关标签
  

闽ICP备14008679号