# Form implementation generated from reading ui file 'AddPG.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_FormAddPG(object): def setupUi(self, FormAddPG): FormAddPG.setObjectName("FormAddPG") FormAddPG.resize(360, 160) FormAddPG.setWindowIcon(QIcon(':/icon/1.ico')) FormAddPG.setMinimumSize(QtCore.QSize(360, 140)) FormAddPG.setMaximumSize(QtCore.QSize(360, 160)) self.gridLayout = QtWidgets.QGridLayout(FormAddPG) self.gridLayout.setObjectName("gridLayout") self.verticalLayout = QtWidgets.QVBoxLayout() self.verticalLayout.setObjectName("verticalLayout") self.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") self.label = QtWidgets.QLabel(parent=FormAddPG) self.label.setObjectName("label") self.horizontalLayout.addWidget(self.label) self.textEdit = QtWidgets.QTextEdit(parent=FormAddPG) self.textEdit.setObjectName("textEdit") self.horizontalLayout.addWidget(self.textEdit) self.verticalLayout.addLayout(self.horizontalLayout) self.gridLayout.addLayout(self.verticalLayout, 0, 0, 1, 1) self.pushButton = QtWidgets.QPushButton(parent=FormAddPG) self.pushButton.setObjectName("pushButton") self.gridLayout.addWidget(self.pushButton, 1, 0, 1, 1) self.retranslateUi(FormAddPG) QtCore.QMetaObject.connectSlotsByName(FormAddPG) def retranslateUi(self, FormAddPG): _translate = QtCore.QCoreApplication.translate FormAddPG.setWindowTitle(_translate("FormAddPG", "Form")) self.label.setText(_translate("FormAddPG", "待办内容")) self.pushButton.setText(_translate("FormAddPG", "提交"))