pyqt5 self.clear()方法使用示例
时间: 2023-05-16 22:04:55 浏览: 427
当我们在使用 PyQt5 编写 GUI 程序时,有时候需要清空某些控件的内容,这时候就可以使用 self.clear() 方法。下面是一个示例:
```python
from PyQt5.QtWidgets import QApplication, QWidget, QLineEdit, QPushButton, QVBoxLayout
class MyWidget(QWidget):
def __init__(self):
super().__init__()
self.edit = QLineEdit()
self.button = QPushButton('Clear')
self.button.clicked.connect(self.clear_edit)
layout = QVBoxLayout()
layout.addWidget(self.edit)
layout.addWidget(self.button)
self.setLayout(layout)
def clear_edit(self):
self.edit.clear()
if __name__ == '__main__':
app = QApplication([])
widget = MyWidget()
widget.show()
app.exec_()
```
在这个示例中,我们创建了一个 QLineEdit 和一个 QPushButton,当按钮被点击时,调用 clear_edit 方法,将 QLineEdit 的内容清空。
阅读全文