代码如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
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 获取显示器的分辨率的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/pursuit_zhangyu/article/details/83508025