有时我们需要根据电脑的分辨率来调整我们的工具窗口。这时就需要获取电脑的分辨率,获取方法如下: 先通过 QApplication.desktop() 获取一个桌面的对象。 然后通过它的 width() 和 height() 来获取桌面的宽和高。
desktop = QApplication.desktop()
print("屏幕宽:" + str(desktop.width()))
print("屏幕高:" + str(desktop.height()))
运行效果图: 我的电脑分辨率就是 1366*768 的。