PyQt5 – 如何检查标签的可见性状态
我们可以在PyQt5中使用setVisible()方法来设置标签的可见状态。为了检查任何标签的可见状态,我们将使用isVisible()方法,这将通过检查标签是否可见来返回True或False。
注意: 如果在构造函数中使用这个方法,它将总是返回False,因为一旦主窗口/父窗口是可见的,标签的可见属性才会被改变为true。
语法: label.isVisible()
参数: 它不需要参数。
返回: 它返回bool。
代码。
# importing the required libraries
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 geometry
self.setGeometry(100, 100, 600, 400)
# creating a label widget
self.label_1 = QLabel("Label", self)
# moving position
self.label_1.move(0, 0)
# setting up the border
self.label_1.setStyleSheet("border :3px solid black;")
# setting visibility status
self.label_1.setVisible(True)
# show all the widgets
self.show()
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# getting visibility status
visible = str(window.label_1.isVisible())
# printing visibility status of label
print(visible)
# start the app
sys.exit(App.exec())
输出:
True