PyQt5 - 为状态栏的宽度/高度设置固定长度
当窗口被调整大小时,状态栏也会被调整大小,尽管我们可以通过使用状态栏对象的setFixedSize
方法来设置状态栏的固定大小。在本文中,我们将看到我们如何只能固定凋谢宽度或高度的长度,即另一边是可变的。
为了固定宽度的长度,我们将setFixedWidth
与状态栏的对象一起使用,为了固定高度的长度,我们将setFixedHeight
与状态栏的对象一起使用。
Syntax :
Argument : Both methods take integer as argument.
Action performed :setFixedHeight
fix the height of status bar.setFixedWidth
fix the width of status bar.
代码 :
self.statusBar().setFixedHeight(height)
self.statusBar().setFixedWidth(width)
输出 :