我的 UI 的 QGridLayout 有问题。在这里,我尝试创建响应用户加载的文件的 UI。第一次加载时,QGridLayout 会更新以反映文件的内容,一切都很好。但是,下次加载文件时,应该删除网格内的小部件(调用 deleteLater() 来执行此操作)。正在发生的事情是它们刚刚被覆盖。
图片可能会有所帮助 - 这是您在重复加载两个不同文件后看到的内容。您可以看到“传输消息”和“字段”文本很好。
我正在使用的代码如下。如果有人觉得这里没有发现错误,而是在代码的其他地方发现了错误,我可以发布更多。但似乎在这里找到了令人反感的逻辑。特别是,每次调用都创建一个新的 QLabel 有问题吗?
def populateTxField(self):
# First delete the old contents
rowcount = self.txGrid.rowCount()
for i in range(1, rowcount):
try:
# Note that these widgets are QLabel type
self.txGrid.itemAtPosition(i, 4).widget().deleteLater()
self.txGrid.itemAtPosition(i, 3).widget().deleteLater()
except AttributeError:
# If widget has already been deleted, ignore the error
pass
key = self.firstTxMessageInfo.currentText()
self.txQLabel_LineContainer = [] # store QLineEdits here
# Now add all of the widgets to the transmission QGridLayout
row = 1 # counter for adding to txGrid row
for field in self.dataBack.messages[key].fields.keys():
newLabel = QtWidgets.QLabel() # Creating a new widget here...
newLabel.setText(field) # Is this problematic?
newLineEdit = QtWidgets.QLineEdit()
# Append to the following list to access from txActivateHandler.
self.txQLabel_LineContainer.append((newLabel, newLineEdit))
# Now update the grid with the new widgets
self.txGrid.addWidget(newLabel, row, 3)
self.txGrid.addWidget(newLineEdit, row, 4)
row += 1