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.
我已经对此进行了很多阅读,但没有找到解决方案。update并且repaint似乎没有为我的树做任何事情。我不想重建它来进行简单的重绘。我不想弄乱应用程序,因为它不是我的。我只是为它创建一个小部件。
update
repaint
我偶然发现了发布的答案,它似乎运行良好。
我的小部件的 QTreeWidget 被称为“树”....
def repaintAll(self): """ Refresh the paint on the entire tree """ region = self.tree.childrenRegion() self.tree.setDirtyRegion(region)