python

超轻量级php框架startmvc

pyqt5 获取显示器的分辨率的方法

更新时间:2020-07-07 05:12:01 作者:startmvc
代码如下importsysfromPyQt5.QtWidgetsimportQApplication,QWidgetclassExample(QWidget):def__init__(self):super().__init

代码如下


import sys
from PyQt5.QtWidgets import QApplication, QWidget
 
 
class Example(QWidget):
 
 def __init__(self):
 super().__init__()
 
 self.initUI() # 界面绘制交给InitUi方法
 
 def initUI(self):
 
 self.desktop = QApplication.desktop()
 
 #获取显示器分辨率大小
 self.screenRect = self.desktop.screenGeometry()
 self.height = self.screenRect.height()
 self.width = self.screenRect.width()
 
 print(self.height)
 print(self.width)
 
 # 显示窗口
 self.show()
 
 
if __name__ == '__main__':
 # 创建应用程序和对象
 app = QApplication(sys.argv)
 ex = Example()
 sys.exit(app.exec_())

以上这篇pyqt5 获取显示器的分辨率的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

pyqt5 显示器 分辨率