pyqt:通过函数创建一个Qwidget

问题描述

我想在我的GUI框架中插入QLabel。 如果我直接在init函数中执行此操作,那么它将起作用:

class MyApp(QMainWindow):
    def __init__(self):
        super().__init__()
        uic.loadUi('MyGui.ui',self) # <<< this is the GUI made with QtDesigner
        
        LB1 = QLabel('MyLabel',self.myFrame) # <<< this is the destination frame
        ...

但是如果通过函数执行相同的操作,则似乎无法正常工作:

def MYFUNCTION(self):
    LB1 = QLabel('MyLabel',self.myFrame)

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)