📜  PyQt5 – 如何检查标签的可见性状态?

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

PyQt5 – 如何检查标签的可见性状态?

我们可以使用 PyQt5 中的setVisible()方法设置标签的可见性状态。为了检查任何标签的可见性状态,我们将使用isVisible()方法,这将通过检查标签是否可见来返回 True 或 False。

注意:如果在构造函数内部使用此方法,它将始终返回 False,因为一旦主窗口/父级可见,则标签可见属性更改为 true。

代码 :

# 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