56 lines
2.7 KiB
Python
56 lines
2.7 KiB
Python
# Form implementation generated from reading ui file 'c:\Qt6Pro\TG-PlatformPlus\ui\createProjectDlg.ui'
|
|
#
|
|
# Created by: PyQt6 UI code generator 6.5.2
|
|
#
|
|
# 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, QtGui, QtWidgets
|
|
|
|
|
|
class Ui_createProjectDlg(object):
|
|
def setupUi(self, createProjectDlg):
|
|
createProjectDlg.setObjectName("createProjectDlg")
|
|
createProjectDlg.resize(314, 123)
|
|
self.verticalLayout = QtWidgets.QVBoxLayout(createProjectDlg)
|
|
self.verticalLayout.setObjectName("verticalLayout")
|
|
self.horizontalLayout = QtWidgets.QHBoxLayout()
|
|
self.horizontalLayout.setObjectName("horizontalLayout")
|
|
self.label = QtWidgets.QLabel(parent=createProjectDlg)
|
|
self.label.setObjectName("label")
|
|
self.horizontalLayout.addWidget(self.label)
|
|
self.leName = QtWidgets.QLineEdit(parent=createProjectDlg)
|
|
self.leName.setObjectName("leName")
|
|
self.horizontalLayout.addWidget(self.leName)
|
|
self.verticalLayout.addLayout(self.horizontalLayout)
|
|
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
|
|
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
|
|
self.label_2 = QtWidgets.QLabel(parent=createProjectDlg)
|
|
self.label_2.setObjectName("label_2")
|
|
self.horizontalLayout_2.addWidget(self.label_2)
|
|
self.leRemark = QtWidgets.QLineEdit(parent=createProjectDlg)
|
|
self.leRemark.setObjectName("leRemark")
|
|
self.horizontalLayout_2.addWidget(self.leRemark)
|
|
self.verticalLayout.addLayout(self.horizontalLayout_2)
|
|
self.horizontalLayout_3 = QtWidgets.QHBoxLayout()
|
|
self.horizontalLayout_3.setObjectName("horizontalLayout_3")
|
|
self.pbSave = QtWidgets.QPushButton(parent=createProjectDlg)
|
|
self.pbSave.setObjectName("pbSave")
|
|
self.horizontalLayout_3.addWidget(self.pbSave)
|
|
self.pbCancel = QtWidgets.QPushButton(parent=createProjectDlg)
|
|
self.pbCancel.setObjectName("pbCancel")
|
|
self.horizontalLayout_3.addWidget(self.pbCancel)
|
|
self.verticalLayout.addLayout(self.horizontalLayout_3)
|
|
|
|
self.retranslateUi(createProjectDlg)
|
|
QtCore.QMetaObject.connectSlotsByName(createProjectDlg)
|
|
|
|
def retranslateUi(self, createProjectDlg):
|
|
_translate = QtCore.QCoreApplication.translate
|
|
createProjectDlg.setWindowTitle(_translate("createProjectDlg", "Dialog"))
|
|
self.label.setText(_translate("createProjectDlg", "名称"))
|
|
self.label_2.setText(_translate("createProjectDlg", "备注"))
|
|
self.pbSave.setText(_translate("createProjectDlg", "确认"))
|
|
self.pbCancel.setText(_translate("createProjectDlg", "取消"))
|