在我的程序中,我需要在vbox布局中删除hbox布局,我只知道删除布局中的小部件,但在这里我要删除总布局。任何人都可以告诉我如何在另一布局中删除总布局。谢谢。
下面是示例代码:
self.newvbox = QtGui.QVBoxLayout(self.mainw2)
self.serachhbox = QtGui.QHBoxLayout()
self.serachhbox.addWidget(self.phnbr)
self.serachhbox.addWidget(self.searchEdit)
self.serachhbox.addWidget(self.searchlabel)
self.newvbox.addLayout(self.labels)
self.newvbox.addLayout(self.serachhbox)#here i need to remove this layout
self.newvbox.addWidget(self.textEdit)
self.newvbox.addWidget(self.table)
self.newvbox.addLayout(self.hbox2)