Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有几个 PyQt Windows 设置,每个都使用 ListWidget。我想要它,以便在单击某个窗口上的按钮时,它会使用新信息重新加载 ListWidget(有点更新数据)。有什么帮助吗?
这里没什么好说的,一些源代码会很有用......
重载位:
def reloadList(info): # info is a list of strings listwidget.clear() listwidget.addItems(info)
按钮回调:
btn.clicked.connect(reloadList)
不确定是否能回答您的问题,但如果您提供更详细的信息,我可能会给出更好的答案;-)