当前位置:   article > 正文

Qt获取屏幕大小并设置居中_qt4 获取屏幕物理尺寸

qt4 获取屏幕物理尺寸

Qt获取当前屏幕大小
1、头文件
#include

2、代码
QScreen *screen = QGuiApplication::primaryScreen ();
QRect screenRect = screen->availableVirtualGeometry();
int width = (screenRect.width()-this->width())/2;
int height = (screenRect.height()-this->height())/2;
this->setGeometry(width,height,this->width(),this->height());

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

闽ICP备14008679号