Answers for "load py file converted from .ui file"

0

load py file converted from .ui file

class MyClass(QMainWindow,Ui_MainWindow):
    def __init__(self):
        #super(MyClass, self).__init__()
        super().__init__() #python 3

        # Set up the user interface from Designer.
        self.setupUi(self)

        #I'll start making some changes here
Posted by: Guest on February-05-2022

Python Answers by Framework

Browse Popular Code Answers by Language