PyQt5 – 设置状态栏的最大尺寸
我们知道在默认情况下,当我们调整窗口的大小时,状态栏也会被调整。在这篇文章中,我们将看到如何设置状态栏的最大尺寸,即当我们扩展窗口时,状态栏不应该超过这个尺寸。
为了做到这一点,我们将使用状态栏对象的setMaximumSize方法。
语法: self.statusBar().setMaximumSize(width, height)
参数: 它需要两个参数,都是整数,指宽度和高度。
执行的操作: 它为状态栏设置最大尺寸。
代码。
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")
# setting the geometry of window
self.setGeometry(60, 60, 600, 400)
# setting status bar message
self.statusBar().showMessage("This is status bar")
# setting border and padding with different sizes
self.statusBar().setStyleSheet("border :3px solid black;")
# setting maximum size
self.statusBar().setMaximumSize(400, 100)
# creating a label widget
self.label_1 = QLabel("status bar", self)
# moving position
self.label_1.move(100, 100)
# setting up the border
self.label_1.setStyleSheet("border :1px solid blue;")
# resizing label
self.label_1.adjustSize()
# 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())
输出 :