PyQt5 - 添加标签到状态栏
在本文中,我们将了解如何为状态栏添加标签。我们可以使用showMessage
方法将文本设置为状态栏。
标签和状态栏?
标签是在表单上显示文本的图形控制元素。通常是静态控制;没有交互性。标签通常用于标识附近的文本框或其他小部件。状态栏是一个水平栏,通常位于屏幕或窗口的底部,显示有关正在编辑的文档或正在运行的程序的信息。
In order to do this we will do following steps :
1. Create a label
2. Add text to label
3. Create object of status bar
4. Add label to status bar
代码 :
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;")
# creating a label widget
self.label_1 = QLabel("Label 1")
# setting up the border
self.label_1.setStyleSheet("border :2px solid blue;")
# adding label to status bar
self.statusBar().addPermanentWidget(self.label_1)
# 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())