如何获取屏幕的宽度和高度呢?
Qt5
使用QDesktopWidget这个类
cpp
#include<QDesktopWidget>
#include<QApplication>
QDesktopWidget* desktop=QApplication::desktop();
destktop->width();
destktop->height();
Qt6
QDesktopWidget这个类在Qt6中被废弃了,使用QScreen这个类
cpp
#include<QScreen>
QRect screen=QGuiApplication::primaryScreen()->geometry();
int w=screen.width();
int h=screen.height();