1
我試圖將列表中的類對象作爲QWidget
添加到QSplitter
。將列表中的類對象添加到QWidget中
這是代碼:
class Windows(QMainWindow):
list_1 = []
def __init__(self):
#Some stuff in here
self.splitter = QSplitter(Qt.Vertical)
def methodA(self):
plot = Plot()
Windows.list_1.append(plot)
self.splitter.addwidget(???) #Here is where i want to put the specific class object
#from the list
class Plot():
#this is a Matplotlib figure
首先,我調用類對象plot
和我追加到list_1
當我推鍵的組合,然後我需要補充的是特定對象,從列表,在QSplitter
使用addWidget
。
我怎樣才能做到這一點?希望您能夠幫助我。
我需要這樣做,爲了從列表中識別對象,以後我可以創建另一種方法從分隔符中刪除這個對象。
有關使用字典什麼? – tobilocker
謝謝你的回答。有什麼不同? –
您是否嘗試添加剛剛添加到列表中的項目或列表中的其他項目? –