重新设计用户界面后,QtDesigner更改将丢失我使用QtDesinger来设计GUI以在python中使用,在用QtDesigner设计了我想要的UI之后,将它转换为python代码,然后更改生成的代码以在python代码中执行一些操作,但是如果我用QtDesigner更改UI并再次将其转换为python代码,我就失去了以前对代码的更改。我怎样才能解决这个问题?我们可以在python中的多个文件上扩展一个类来在其他文件中编写代码吗?
2 回答
繁华开满天机
TA贡献1816条经验 获得超4个赞
# importsfrom PyQt5 import uic# load ui filebaseUIClass, baseUIWidget = uic.loadUiType("MainGui.ui") # use loaded ui file in the logic classclass Logic(baseUIWidget, baseUIClass): def __init__(self, parent=None): super(Logic, self).__init__(parent) self.setupUi(self) . . . .def main(): app = QtWidgets.QApplication(sys.argv) ui = Logic(None) ui.showMaximized() sys.exit(app.exec_())
添加回答
举报
0/150
提交
取消