PyQt5 中的 clear() 方法
在使用 PyQt5 时,需要删除或清除标签才能使用clear()
方法。此方法属于QLabel 类,只能用于标签小部件。
Syntax : label.clear()
Argument : It takes no argument.
Action Performed : It clears(remove) the label from main window.
下面是这个方法的实现。
代码 :
# importing the required libraries
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
import sys
class Window(QMainWindow):
def __init__(self):
super().__init__()
# set the title
self.setWindowTitle("Move")
# setting the geometry of window
self.setGeometry(0, 0, 500, 300)
# creating a label widget
self.label1 = QLabel('Label 1', self)
# moving the widget
# move(left, top)
self.label1.move(100, 100)
# creating a label widget
self.label2 = QLabel('Label 2 ', self)
# moving the widget
# move(left, top)
self.label2.move(100, 120)
# clearing label 2
self.label2.clear()
# creating a label widget
self.label3 = QLabel('Label 3', self)
# moving the widget
# move(left, top)
self.label3.move(100, 140)
# 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())
输出 :
如上图所示,由于clear()
方法,Label2 不会被看到。