1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- # Form implementation generated from reading ui file 'changePassword.ui'
- #
- # Created by: PyQt6 UI code generator 6.5.1
- #
- # WARNING: Any manual changes made to this file will be lost when pyuic6 is
- # run again. Do not edit this file unless you know what you are doing.
- from PyQt6 import QtCore, QtWidgets
- from PyQt6.QtGui import QIcon
- class Ui_FormChangePssword(object):
- def setupUi(self, FormChangePssword):
- FormChangePssword.setObjectName("FormChangePssword")
- FormChangePssword.resize(360, 160)
- FormChangePssword.setWindowIcon(QIcon(':/icon/1.ico'))
- FormChangePssword.setMinimumSize(QtCore.QSize(360, 140))
- FormChangePssword.setMaximumSize(QtCore.QSize(360, 160))
- self.gridLayout = QtWidgets.QGridLayout(FormChangePssword)
- self.gridLayout.setObjectName("gridLayout")
- self.verticalLayout = QtWidgets.QVBoxLayout()
- self.verticalLayout.setObjectName("verticalLayout")
- self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_2.setObjectName("horizontalLayout_2")
- self.label_2 = QtWidgets.QLabel(parent=FormChangePssword)
- self.label_2.setObjectName("label_2")
- self.horizontalLayout_2.addWidget(self.label_2)
- self.lineEditold = QtWidgets.QLineEdit(parent=FormChangePssword)
- self.lineEditold.setObjectName("lineEditold")
- self.lineEditold.setEchoMode(QtWidgets.QLineEdit.EchoMode.Password)
- self.horizontalLayout_2.addWidget(self.lineEditold)
- self.verticalLayout.addLayout(self.horizontalLayout_2)
- self.horizontalLayout_3 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_3.setObjectName("horizontalLayout_3")
- self.label_3 = QtWidgets.QLabel(parent=FormChangePssword)
- self.label_3.setObjectName("label_3")
- self.horizontalLayout_3.addWidget(self.label_3)
- self.lineEditnew = QtWidgets.QLineEdit(parent=FormChangePssword)
- self.lineEditnew.setText("")
- self.lineEditnew.setAlignment(QtCore.Qt.AlignmentFlag.AlignLeading|QtCore.Qt.AlignmentFlag.AlignLeft|QtCore.Qt.AlignmentFlag.AlignVCenter)
- self.lineEditnew.setObjectName("lineEditnew")
- self.lineEditnew.setEchoMode(QtWidgets.QLineEdit.EchoMode.Password)
- self.horizontalLayout_3.addWidget(self.lineEditnew)
- self.verticalLayout.addLayout(self.horizontalLayout_3)
- self.horizontalLayout_4 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_4.setObjectName("horizontalLayout_4")
- self.label_4 = QtWidgets.QLabel(parent=FormChangePssword)
- self.label_4.setObjectName("label_4")
- self.horizontalLayout_4.addWidget(self.label_4)
- self.lineEditnew2 = QtWidgets.QLineEdit(parent=FormChangePssword)
- self.lineEditnew2.setObjectName("lineEditnew2")
- self.lineEditnew2.setEchoMode(QtWidgets.QLineEdit.EchoMode.Password)
- self.horizontalLayout_4.addWidget(self.lineEditnew2)
- self.verticalLayout.addLayout(self.horizontalLayout_4)
- self.gridLayout.addLayout(self.verticalLayout, 0, 0, 1, 1)
- self.pushButton = QtWidgets.QPushButton(parent=FormChangePssword)
- self.pushButton.setObjectName("pushButton")
- self.gridLayout.addWidget(self.pushButton, 1, 0, 1, 1)
- self.retranslateUi(FormChangePssword)
- QtCore.QMetaObject.connectSlotsByName(FormChangePssword)
- def retranslateUi(self, FormChangePssword):
- _translate = QtCore.QCoreApplication.translate
- FormChangePssword.setWindowTitle(_translate("FormChangePssword", "更改密码"))
- self.label_2.setText(_translate("FormChangePssword", "原 密 码"))
- self.label_3.setText(_translate("FormChangePssword", "新 密 码"))
- self.label_4.setText(_translate("FormChangePssword", "确认密码"))
- self.pushButton.setText(_translate("FormChangePssword", "提交"))
|