当前位置:   article > 正文

PyQt5:窗口大小根据屏幕大小自适应调整_python qt5 做出的页面在电脑上太小

python qt5 做出的页面在电脑上太小
  1. from PyQt5 import QtCore, QtGui, QtWidgets
  2. from PyQt5.QtWidgets import QDesktopWidget #导入屏幕类
  3. class Ui_MainWindow(object):
  4. def setupUi(self, MainWindow):
  5. MainWindow.setObjectName("mignri")
  6. # MainWindow.setObjectName("窗口名称-小强")
  7. screen = QDesktopWidget().screenGeometry(); #获取屏幕大小
  8. width = screen.width(); #宽
  9. height = screen.height(); #窄
  10. MainWindow.resize(width/4, height/4)

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/104872
推荐阅读
相关标签
  

闽ICP备14008679号