上一篇
PyQt5输入框输入内容后 下方给出提示
- 行业动态
- 2024-04-15
- 2455
在PyQt5中,可以使用QLineEdit控件创建输入框,并使用信号槽机制实现输入内容后下方给出提示,以下是详细的步骤和代码:
1、首先安装PyQt5库,可以使用以下命令安装:
pip install PyQt5
2、创建一个名为main.py的文件,编写以下代码:
import sys from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout, QHBoxLayout, QLabel, QLineEdit, QPushButton, QMessageBox class MainWindow(QWidget): def __init__(self): super().__init__() self.initUI() def initUI(self): self.setWindowTitle('输入框提示示例') self.setGeometry(300, 300, 400, 200) vbox = QVBoxLayout() hbox1 = QHBoxLayout() label = QLabel('请输入内容:') self.lineEdit = QLineEdit() self.lineEdit.textChanged.connect(self.show_tip) hbox1.addWidget(label) hbox1.addWidget(self.lineEdit) vbox.addLayout(hbox1) hbox2 = QHBoxLayout() button = QPushButton('提交') button.clicked.connect(self.submit) hbox2.addStretch() hbox2.addWidget(button) vbox.addLayout(hbox2) self.setLayout(vbox) def show_tip(self): tip = '您输入的内容是:' + self.lineEdit.text() QMessageBox.information(self, '提示', tip) def submit(self): pass if __name__ == '__main__': app = QApplication(sys.argv) window = MainWindow() window.show() sys.exit(app.exec_())
3、运行main.py文件,将会看到一个包含输入框和提交按钮的窗口,在输入框中输入内容时,下方会弹出提示框显示输入的内容,点击提交按钮不会触发任何操作。
本站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本站,有问题联系侵删!
本文链接:http://www.xixizhuji.com/fuzhu/290218.html