欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-12-17 14:58:28
代码如下 import sys from pyqt5.qtwidgets import qapplication, qwidget class e...

代码如下

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 获取显示器的分辨率的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

上一篇:

下一篇: