Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检索 Qt4 或 Qt5 中的当前显示分辨率?例如,如果我将显示分辨率设置为 1366x768,那么如何在我的应用程序中获取此值?
一种解决方案是获取 QT 桌面小部件的尺寸
#include qDebug () << QApplication::desktop()->screenGeometry();
它返回一个 QRect,它提供了获取高度和宽度的函数。