网络编程
位置:首页>> 网络编程>> Python编程>> pyqt5 获取显示器的分辨率的方法

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

作者:pursuit_zhangyu  发布时间:2023-10-25 09:51:36 

标签:pyqt5,显示器,分辨率

代码如下


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_())

来源:https://blog.csdn.net/pursuit_zhangyu/article/details/83508025

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com