12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- # Form implementation generated from reading ui file 'D:\fairyJY\py\flightinfo2\flightinfo\UI\adduser.ui'
- #
- # Created by: PyQt6 UI code generator 6.4.0
- #
- # 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_FormAdduser(object):
- def setupUi(self, FormAdduser):
- FormAdduser.setObjectName("FormAdduser")
- FormAdduser.resize(360, 160)
- FormAdduser.setWindowIcon(QIcon(':/icon/1.ico'))
- FormAdduser.setMinimumSize(QtCore.QSize(360, 140))
- FormAdduser.setMaximumSize(QtCore.QSize(360, 160))
- self.gridLayout = QtWidgets.QGridLayout(FormAdduser)
- self.gridLayout.setObjectName("gridLayout")
- self.verticalLayout = QtWidgets.QVBoxLayout()
- self.verticalLayout.setObjectName("verticalLayout")
- self.horizontalLayout = QtWidgets.QHBoxLayout()
- self.horizontalLayout.setObjectName("horizontalLayout")
- self.label = QtWidgets.QLabel(FormAdduser)
- self.label.setObjectName("label")
- self.horizontalLayout.addWidget(self.label)
- self.lineEditUser = QtWidgets.QLineEdit(FormAdduser)
- self.lineEditUser.setObjectName("lineEditUser")
- self.horizontalLayout.addWidget(self.lineEditUser)
- self.verticalLayout.addLayout(self.horizontalLayout)
- self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_2.setObjectName("horizontalLayout_2")
- self.label_2 = QtWidgets.QLabel(FormAdduser)
- self.label_2.setObjectName("label_2")
- self.horizontalLayout_2.addWidget(self.label_2)
- self.lineEditPWD = QtWidgets.QLineEdit(FormAdduser)
- self.lineEditPWD.setObjectName("lineEditPWD")
- self.horizontalLayout_2.addWidget(self.lineEditPWD)
- self.verticalLayout.addLayout(self.horizontalLayout_2)
- self.horizontalLayout_3 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_3.setObjectName("horizontalLayout_3")
- self.label_3 = QtWidgets.QLabel(FormAdduser)
- self.label_3.setObjectName("label_3")
- self.horizontalLayout_3.addWidget(self.label_3)
- self.comboBox = QtWidgets.QComboBox(FormAdduser)
- self.comboBox.setObjectName("comboBox")
- self.horizontalLayout_3.addWidget(self.comboBox)
- self.horizontalLayout_3.setStretch(1, 2)
- self.verticalLayout.addLayout(self.horizontalLayout_3)
- self.horizontalLayout_4 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_4.setObjectName("horizontalLayout_4")
- self.label_4 = QtWidgets.QLabel(FormAdduser)
- self.label_4.setObjectName("label_4")
- self.horizontalLayout_4.addWidget(self.label_4)
- self.lineEditPeople = QtWidgets.QLineEdit(FormAdduser)
- self.lineEditPeople.setObjectName("lineEditPeople")
- self.horizontalLayout_4.addWidget(self.lineEditPeople)
- self.verticalLayout.addLayout(self.horizontalLayout_4)
- self.gridLayout.addLayout(self.verticalLayout, 0, 0, 1, 1)
- self.pushButton = QtWidgets.QPushButton(FormAdduser)
- self.pushButton.setObjectName("pushButton")
- self.gridLayout.addWidget(self.pushButton, 1, 0, 1, 1)
- self.retranslateUi(FormAdduser)
- QtCore.QMetaObject.connectSlotsByName(FormAdduser)
- def retranslateUi(self, FormAdduser):
- _translate = QtCore.QCoreApplication.translate
- FormAdduser.setWindowTitle(_translate("FormAdduser", "注册账号"))
- self.label.setText(_translate("FormAdduser", "登录名"))
- self.label_2.setText(_translate("FormAdduser", "密 码"))
- self.label_3.setText(_translate("FormAdduser", "权 限"))
- self.label_4.setText(_translate("FormAdduser", "使用人"))
- self.pushButton.setText(_translate("FormAdduser", "提交"))
|