📌  相关文章
📜  如何在 pyqt5 中加载 ui 文件 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:27.786000             🧑  作者: Mango

代码示例1
class Ui(QtWidgets.QMainWindow):
    def __init__(self):
        super(Ui, self).__init__() # Call the inherited classes __init__ method
        uic.loadUi('basic.ui', self) # Load the .ui file
        self.show() # Show the GUI