PyQt5 – 设置固定的高度或宽度的窗口大小

您所在的位置:网站首页 电脑把窗口固定怎么设置的呢视频教学 PyQt5 – 设置固定的高度或宽度的窗口大小

PyQt5 – 设置固定的高度或宽度的窗口大小

2024-07-12 23:02| 来源: 网络整理| 查看: 265

PyQt5 – 设置固定的高度或宽度的窗口大小

当我们创建一个窗口时,默认情况下窗口的大小是可以调整的,尽管如此,我们可以使用setFixedSize()方法来设置窗口的固定大小,但是如果我们只想设置固定的高度或宽度,我们就不能使用这个方法。我们想设置一个固定的长度,另一个是可变的,为了做到这一点,我们必须使用setFixedWidth()方法来设置固定的宽度长度,setFizedHeight()方法来设置固定的高度长度。

语法:

self.setFixedWidth(width) self.setFixedHeight(height)

参数: 两者都以整数为参数。

执行的动作: setFixedWidth()设置恒定宽度。 setFixedHeight()设置恒定高度。

固定宽度的代码

# 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                   # setting  the fixed width of window         self.setFixedWidth(width)             # creating a label widget         self.label_1 = QLabel("Fixed width", 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())

输出 :

PyQt5 - 设置固定的高度或宽度的窗口大小

固定高度的代码 –

# 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")           height = 400         # setting  the fixed height of window         self.setFixedHeight(height)             # creating a label widget         self.label_1 = QLabel("Fixed height", 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())

输出 :

PyQt5 - 设置固定的高度或宽度的窗口大小



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3