PyQt5基础学习-QFormLayout(表单布局) 1.QFormLayout().addRow(添加一行表单布局)
添加标签和每一行的文本来构造表单布局
FormLayout.py
""" 表单布局 """ import sys, math from PyQt5.QtWidgets import * class FormForm(QWidget): def __init__(self): super(FormForm, self).__init__() self.setWindowTitle("表单布局") self.resize(350, 300) formLayout = QFormLayout() titleLabel = QLabel("标题") authorLabel = QLabel("作者") contentLabel = QLabel("内容") titleEdit = QLineEdit() authorEdit = QLineEdit() contentEdit = QTextEdit() formLayout.addRow(titleLabel, titleEdit) formLayout.addRow(authorLabel, authorEdit) formLayout.addRow(contentLabel, contentEdit) self.setLayout(formLayout) if __name__ == "__main__": app = QApplication(sys.argv) main = FormForm() main.show() sys.exit(app.exec_())
每天更新pyQt5内容