PyQt5 – 为状态栏的宽度/高度设置固定长度
虽然我们可以通过使用状态栏对象的setFixedSize方法来设置状态栏的固定尺寸,但当窗口被调整时,状态栏也会被调整。在这篇文章中,我们将看到我们如何只能固定宽度或高度的长度,即其他方面是可变的。为了固定宽度的长度,我们使用状态栏对象的setFixedWidth,为了固定高度的长度,我们使用状态栏对象的setFixedHeight。
语法:
self.statusBar().setFixedHeight(height)
self.statusBar().setFixedWidth(width)
参数: 两个方法都使用整数作为参数。
执行的操作: setFixedHeight修复状态栏的高度。 setFixedWidth修复状态栏的宽度。
代码。
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 fixed width
self.statusBar().setFixedHeight(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())
输出 :