# Form implementation generated from reading ui file 'D:\fairyJY\py\flightinfo2\flightinfo\UI\addInfo.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_FormAddinfo(object): def setupUi(self, FormAddinfo): FormAddinfo.setObjectName("FormAddinfo") FormAddinfo.resize(400, 300) FormAddinfo.setWindowIcon(QIcon(':/icon/1.ico')) self.gridLayout = QtWidgets.QGridLayout(FormAddinfo) self.gridLayout.setObjectName("gridLayout") self.verticalLayout = QtWidgets.QVBoxLayout() self.verticalLayout.setObjectName("verticalLayout") self.label = QtWidgets.QLabel(FormAddinfo) self.label.setObjectName("label") self.verticalLayout.addWidget(self.label) self.textEdit = QtWidgets.QTextEdit(FormAddinfo) self.textEdit.setObjectName("textEdit") self.verticalLayout.addWidget(self.textEdit) self.pushButton = QtWidgets.QPushButton(FormAddinfo) self.pushButton.setObjectName("pushButton") self.verticalLayout.addWidget(self.pushButton) self.gridLayout.addLayout(self.verticalLayout, 0, 0, 1, 1) self.retranslateUi(FormAddinfo) QtCore.QMetaObject.connectSlotsByName(FormAddinfo) def retranslateUi(self, FormAddinfo): _translate = QtCore.QCoreApplication.translate FormAddinfo.setWindowTitle(_translate("FormAddinfo", "添加待办信息")) self.label.setText(_translate("FormAddinfo", "提示信息")) self.pushButton.setText(_translate("FormAddinfo", "添加"))