pyqt5 QLineEdit
时间: 2023-11-11 17:45:39 浏览: 97
QLineEdit 是 PyQt5 中的一个文本框控件,可以用于输入单行文本。下面是一个简单的例子:
```python
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QLineEdit, QLabel
class Example(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
self.lbl = QLabel(self)
self.lbl.move(60, 40)
qle = QLineEdit(self)
qle.move(60, 100)
qle.textChanged[str].connect(self.onChanged)
self.setGeometry(300, 300, 280, 170)
self.setWindowTitle('QLineEdit')
self.show()
def onChanged(self, text):
self.lbl.setText(text)
self.lbl.adjustSize()
if __name__ == '__main__':
app = QApplication(sys.argv)
ex = Example()
sys.exit(app.exec_())
```
在这个例子中,我们创建了一个窗口,包含一个 QLabel 和一个 QLineEdit。当用户在 QLineEdit 中输入文本时,会触发 textChanged 信号,我们连接该信号到 onChanged 方法,该方法将用户输入的文本显示在 QLabel 中。
运行该程序,可以看到一个窗口,包含一个文本框和一个标签,当我们在文本框中输入文本时,标签中会实时显示我们输入的文本内容。
![pyqt5_qlineedit](https://user-images.githubusercontent.com/26833433/90331204-8faa3a00-dfdd-11ea-8b5c-c7e0e1cd58b5.png)
阅读全文