这是一个小问题,但它让我感到恼火
我用PyQt
我使用Qt Designer
我使用PyUic5从Qt设计器的输出生成Ui_MyDialog
我创建了一个自定义小部件和一个插件,并设法操作插入
我的自定义小部件到对话框
我设法操作对话框并查看我的自定义小部件
问题是在那里由PyUic5生成的Ui_MyDialog.py中
是(在文件的末尾)我的自定义窗口小部件的导入和我的自定义窗口小部件的文件名是小写字母而不是文件的方式
我查看了插件,没有声明这种文件名的地方
可能是什么问题?
我在这里给了整个文件。问题出在最后一行
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'Ui\PlotDialog.ui'
#
# Created by: PyQt5 UI code generator 5.6
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_PlotDialog(object):
def setupUi(self, PlotDialog):
PlotDialog.setObjectName("PlotDialog")
PlotDialog.resize(400, 300)
self.horizontalLayout = QtWidgets.QHBoxLayout(PlotDialog)
self.horizontalLayout.setObjectName("horizontalLayout")
self.myQtPlotContainer = MyQtPlotConteiner(PlotDialog)
self.myQtPlotContainer.setObjectName("myQtPlotContainer")
self.horizontalLayout.addWidget(self.myQtPlotContainer)
self.buttonBox = QtWidgets.QDialogButtonBox(PlotDialog)
self.buttonBox.setOrientation(QtCore.Qt.Vertical)
self.buttonBox.setStandardButtons (QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok)
self.buttonBox.setObjectName("buttonBox")
self.horizontalLayout.addWidget(self.buttonBox)
self.retranslateUi(PlotDialog)
self.buttonBox.accepted.connect(PlotDialog.accept)
self.buttonBox.rejected.connect(PlotDialog.reject)
QtCore.QMetaObject.connectSlotsByName(PlotDialog)
def retranslateUi(self, PlotDialog):
_translate = QtCore.QCoreApplication.translate
PlotDialog.setWindowTitle(_translate("PlotDialog", "Dialog"))
self.myQtPlotContainer.setToolTip(_translate("PlotDialog", "The current time"))
self.myQtPlotContainer.setWhatsThis(_translate("PlotDialog", "The analog clock widget displays the current time."))
from myqtplotconteiner import MyQtPlotConteiner