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_())

 

posted @ 2022-02-06 20:07  c语言我的最爱  阅读(969)  评论(0编辑  收藏  举报