| 123456789101112131415161718192021222324252627282930313233 |
- # -*- coding: utf-8 -*-
- # Form implementation generated from reading ui file 'custom_dialog_base.ui'
- #
- # Created by: PyQt5 UI code generator 5.15.10
- #
- # WARNING: Any manual changes made to this file will be lost when pyuic5 is
- # run again. Do not edit this file unless you know what you are doing.
- from PyQt5 import QtCore, QtGui, QtWidgets
- class Ui_customDialogBase(object):
- def setupUi(self, customDialogBase):
- customDialogBase.setObjectName("customDialogBase")
- customDialogBase.resize(400, 300)
- self.button_box = QtWidgets.QDialogButtonBox(customDialogBase)
- self.button_box.setGeometry(QtCore.QRect(30, 240, 341, 32))
- self.button_box.setOrientation(QtCore.Qt.Horizontal)
- self.button_box.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok|QtWidgets.QDialogButtonBox.Save)
- self.button_box.setObjectName("button_box")
- self.retranslateUi(customDialogBase)
- self.button_box.accepted.connect(customDialogBase.accept) # type: ignore
- self.button_box.rejected.connect(customDialogBase.reject) # type: ignore
- QtCore.QMetaObject.connectSlotsByName(customDialogBase)
- def retranslateUi(self, customDialogBase):
- _translate = QtCore.QCoreApplication.translate
- customDialogBase.setWindowTitle(_translate("customDialogBase", "自定义工具"))
|