📜  PyQt5 - 在窗口中设置状态栏消息

📅  最后修改于: 2022-05-13 01:55:13.358000             🧑  作者: Mango

PyQt5 - 在窗口中设置状态栏消息

在本文中,我们将看到如何将消息设置到窗口的状态栏。状态栏是一个图形控制元素,它提供了一个通常位于窗口底部的信息区域。它可以分为多个部分来对信息进行分组。它的工作主要是显示有关其窗口当前状态的信息。

为此,我们将使用showMessage()方法。

代码 :

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")
  
        # 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 :5px solid blue;")
  
        # resizing label
        self.label_1.resize(80, 100)
  
        # 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())

输出 :