PyQt5 – 状态栏的可见性状态
状态栏的可见性状态可以被称为如果它是可见的,那么它将返回True,否则就是False。我们可以使用isVisible方法来检查它。
语法: class_object.status_bar_object.isVisible()
参数: 它不需要参数。
返回: 它返回bool。
注意1: 如果我们没有创建一个状态栏对象,这个属性将是假的。
注意2: 如果这个方法在构造函数中被调用,它将总是返回假的,因为在显示任何东西之前,每个可见状态都是假的。
代码:
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
self.statusBar().setStyleSheet("border :3px solid black;")
# setting tool tip for status bar
self.statusBar().setToolTip("Hello ! from 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 :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()
# getting visibility status
t = window.statusBar().isVisible()
# printing value of t
print(t)
# start the app
sys.exit(App.exec())
输出:
True