我想在我的 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)