如何快速的将UI文件转成Python文件
视频代码
class MainWindow(Ui_Form,QtWidgets.QWidget):
def __init__(self,parent=None):
Ui_Form.__init__(self)
QtWidgets.QWidget.__init__(self,parent)
self.setupUi(self)
self.retranslateUi(self)
main_window = MainWindow()
main_window.show()