0

我有一个 ListCtrl,我希望将新行添加到列表顶部(要向下推的先前行)你能帮我吗?

谢谢!

4

2 回答 2

2

关于该解决方案的有趣事实是,我错误地放置index = 0并刚刚观察到它通过将行放在顶部来更新我的列表。即使使用函数附加新行,OnUpdatePList它也会附加在顶部。非常适合我的应用程序。

def OnUpdatePList(self, pobj):
    sr = self.index + 1,
    index = 0
    self.list_ctrl.InsertStringItem(index, str(sr[0]))
    self.list_ctrl.SetStringItem(index, 1, unicode(pobj["title"]))
    self.list_ctrl.SetStringItem(index, 2, unicode(pobj["name"]))
    self.list_ctrl.SetStringItem(index, 3, unicode(pobj["date"]))
    self.list_ctrl.SetStringItem(index, 4, unicode(pobj["rdby"]))
    self.list_ctrl.SetStringItem(index, 5, unicode(pobj["dues"]))
    self.index += 1
于 2014-12-02T10:14:07.273 回答
1

我不相信有一种内置的方法可以做到这一点。您必须保存数据,清除控件,然后插入新行或新行,然后插入原始行。就个人而言,我会切换到使用 ObjectListView 小部件,您可以在其中使用对象列表。然后你可以在列表中插入一个对象并重置控件。

于 2013-06-13T16:03:46.447 回答