1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- # 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.horizontalLayout_3 = QtWidgets.QHBoxLayout()
- self.horizontalLayout_3.setSizeConstraint(QtWidgets.QLayout.SizeConstraint.SetMaximumSize)
- self.horizontalLayout_3.setObjectName("horizontalLayout_3")
- self.label_2 = QtWidgets.QLabel(parent=FormAddPG)
- self.label_2.setMaximumSize(QtCore.QSize(50, 16777215))
- self.label_2.setObjectName("label_2")
- self.horizontalLayout_3.addWidget(self.label_2)
- self.dateTimeEdit = QtWidgets.QDateTimeEdit(parent=FormAddPG)
- self.dateTimeEdit.setLayoutDirection(QtCore.Qt.LayoutDirection.LeftToRight)
- self.dateTimeEdit.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter)
- self.dateTimeEdit.setCalendarPopup(True)
- self.dateTimeEdit.setObjectName("dateTimeEdit")
- self.horizontalLayout_3.addWidget(self.dateTimeEdit)
- self.gridLayout.addLayout(self.horizontalLayout_3, 2, 0, 1, 1)
- self.pushButton = QtWidgets.QPushButton(parent=FormAddPG)
- self.pushButton.setObjectName("pushButton")
- self.gridLayout.addWidget(self.pushButton, 8, 0, 1, 1)
- self.verticalLayout = QtWidgets.QVBoxLayout()
- self.verticalLayout.setSizeConstraint(QtWidgets.QLayout.SizeConstraint.SetDefaultConstraint)
- self.verticalLayout.setObjectName("verticalLayout")
- self.horizontalLayout = QtWidgets.QHBoxLayout()
- self.horizontalLayout.setSizeConstraint(QtWidgets.QLayout.SizeConstraint.SetFixedSize)
- 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.retranslateUi(FormAddPG)
- QtCore.QMetaObject.connectSlotsByName(FormAddPG)
- def retranslateUi(self, FormAddPG):
- _translate = QtCore.QCoreApplication.translate
- FormAddPG.setWindowTitle(_translate("FormAddPG", "添加待办提醒"))
- self.label_2.setText(_translate("FormAddPG", "提醒时间"))
- self.pushButton.setText(_translate("FormAddPG", "提交"))
- self.label.setText(_translate("FormAddPG", "待办内容"))
|