When we create a status bar, by default, the status bar size is resizable. Although we can use setMinimumSize()
method with status bar to set the minimum size of the status bar but what if we want to set minimum length for width or height only.
In order to do, so we use setMinimumWidth()
method with status bar to set minimum width and setMinimumHeight()
method with status bar to set minimum height, when we use these method other length will be variable i.e there will be no minimum length to it, it can shrinks as much it can.
Syntax :
self.statusBar().setMinimumWidth(width)
self.statusBar().setMinimumHeight(height)
Argument :
Both take integer as argument.
Action performed :
setMinimumWidth()
sets the minimum width.
setMinimumHeight()
sets the minimum height.
Code :
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
import sys
class Window(QMainWindow):
def __init__( self ):
super ().__init__()
self .setWindowTitle( "Python" )
self .setGeometry( 60 , 60 , 600 , 400 )
self .statusBar().showMessage( "This is status bar" )
self .statusBar().setStyleSheet( "border :3px solid black;" )
self .statusBar().setMinimumHeight( 100 )
self .label_1 = QLabel( "status bar" , self )
self .label_1.move( 100 , 100 )
self .label_1.setStyleSheet( "border :1px solid blue;" )
self .label_1.adjustSize()
self .show()
App = QApplication(sys.argv)
window = Window()
sys.exit(App. exec ())
|
Output :
