📜  PyQt5 - 设置最大窗口大小

📅  最后修改于: 2022-05-13 01:55:04.660000             🧑  作者: Mango

PyQt5 - 设置最大窗口大小

当我们创建一个窗口时,默认情况下它是可调整大小的,但在setFixedSize()方法的帮助下,我们可以固定窗口的大小。但是如果我们想在某种程度上调整窗口大小怎么办?为此,我们必须设置窗口的最大尺寸。我们将使用setMaximumSize()方法。

代码 :

# importing the required libraries
  
from PyQt5.QtCore import * 
from PyQt5.QtGui import * 
from PyQt5.QtWidgets import * 
import sys
  
  
class Window(QMainWindow):
    def __init__(self):
        super().__init__()
  
  
        # set the title
        self.setWindowTitle("Python")
  
        width = 500
        height = 400
        # setting the maximum size
        self.setMaximumSize(width, height)
  
  
        # creating a label widget
        self.label_1 = QLabel("Maximum size", self)
  
        # moving position
        self.label_1.move(0, 0)
  
        # setting up the border
        self.label_1.setStyleSheet("border :3px solid black;")
  
        # resizing label
        self.label_1.resize(120, 80)
  
        # show all the widgets
        self.show()
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

输出 :