husky1r 2023-03-20 19:24 采纳率: 66.7%
浏览 43
已结题

PyQt5怎么使QFormLayout居中?

怎么使QFormLayout居中啊?

from PyQt5.QtWidgets import QApplication, QWidget, QPushButton, QLineEdit, QVBoxLayout, QLabel, QHBoxLayout, QFormLayout
from PyQt5.QtGui import QPalette, QBrush, QPixmap
from PyQt5.QtCore import Qt
import sys


class LoginUI(QWidget):
    def __init__(self):
        super(LoginUI, self).__init__()
        # 设置固定大小700*600
        self.setFixedSize(1100, 700)
        # 设置背景图片
        self.setObjectName("RegisterUi")
        self.setStyleSheet("#RegisterUi{border-image:url(./assert/LoginBackgroundImageWidth.png)}")
        self.setAttribute(Qt.WA_StyledBackground)
        # 设置登录账户
        self.accountLineEdit = QLineEdit()
        self.accountLineEdit.setObjectName("RegisterAccount")
        self.accountLineEdit.setStyleSheet("#RegisterAccount{background-color:rgba(255, 255, 255, 0.2)}")
        self.accountLineEdit.setFixedSize(300, 50)
        self.accountLabel = QLabel()
        self.accountLabel.setText("账户:")
        self.accountLabel.setObjectName("AccountLabel")
        self.accountLabel.setStyleSheet("#AccountLabel{color:rgba(255,255,255,1);font-size:25px}")
        self.accountLabel.setFixedSize(70, 50)
        # 设置登录密码
        self.passwordLineEdit = QLineEdit()
        self.passwordLineEdit.setEchoMode(QLineEdit.Password)
        self.passwordLineEdit.setObjectName("RegisterPassword")
        self.passwordLineEdit.setStyleSheet("#RegisterPassword{background-color:rgba(255, 255, 255, 0.2)}")
        self.passwordLineEdit.setFixedSize(300, 50)
        self.passwordLabel = QLabel()
        self.passwordLabel.setText("密码:")
        self.passwordLabel.setObjectName("PasswordLabel")
        self.passwordLabel.setStyleSheet("#PasswordLabel{color:rgba(255,255,255,1);font-size:25px}")
        self.passwordLabel.setFixedSize(70, 50)
        # 设置登录按钮
        self.registerButton = QPushButton()
        self.registerButton.setText("登录(Log in)")
        self.registerButton.setObjectName("RegisterButton")
        self.registerButton.setStyleSheet("#RegisterButton{background-color:rgba(255, 255, 255, 0.5)}")
        self.registerButton.setFixedSize(300, 50)
        # 设置布局
        # 水平布局
        self.formLayout = QFormLayout()
        self.formLayout.setLabelAlignment(Qt.AlignRight)
        self.formLayout.addRow(self.accountLabel, self.accountLineEdit)
        self.formLayout.setSpacing(50)
        self.formLayout.addRow(self.passwordLabel, self.passwordLineEdit)
        # 垂直布局
        self.vlayout = QVBoxLayout()
        self.vlayout.addSpacing(200)
        self.vlayout.addLayout(self.formLayout)
        self.vlayout.addWidget(self.registerButton, 0, Qt.AlignCenter)
        self.vlayout.addSpacing(50)

        self.setLayout(self.vlayout)


if __name__ == "__main__":
    app = QApplication(sys.argv)
    main = LoginUI()
    main.show()
    sys.exit(app.exec_())

img


布局中,怎么设置啊?

  • 写回答

2条回答 默认 最新

  • Leodong. 2023-03-20 19:47
    关注

    可以使用QHBoxLayout来包含QFormLayout和两个空白的QSpacerItem,然后使用addStretch来让QHBoxLayout将QFormLayout居中。


    如果以上回答对您有所帮助,望采纳~谢谢

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 3月28日
  • 已采纳回答 3月20日
  • 创建了问题 3月20日

悬赏问题

  • ¥15 Attributeerror:super object has no attribute '__sklearn_tags__'_'
  • ¥15 逆置单链表输出不完整
  • ¥15 宇视vms-B200-A16@R启动不了,如下图所示,在软件工具搜不到,如何解决?(操作系统-linux)
  • ¥500 寻找一名电子工程师完成pcb主板设计(拒绝AI生成式答案)
  • ¥15 关于#mysql#的问题:UNION ALL(相关搜索:sql语句)
  • ¥15 matlab二位可视化能否针对不同数值范围分开分级?
  • ¥15 已经创建了模拟器但是不能用来运行app 怎么办😭自己搞两天了
  • ¥15 关于#极限编程#的问题,请各位专家解答!
  • ¥20 win11账户锁定时间设为0无法登录
  • ¥45 C#学生成绩管理系统