将数据插入texctrl

时间:2010-10-21 17:00:28

标签: python wxpython wxwidgets

要将数据插入textctrl我执行此操作:

num_items = self.lc_sources.GetItemCount() 
self.lc_sources.SetStringItem(num_items, 1, data)

但问题是在数据处理后插入完成,我需要实时插入。 请问我该怎么做

1 个答案:

答案 0 :(得分:1)

当我需要更新ListCtrl时,我通常会这样做:

self.list_ctrl.InsertStringItem(index,data) self.list_ctrl.SetStringItem(index,1,moreData)

最近,我一直在使用ObjectListView而不是ListCtrl,因为我觉得它更容易使用,也更灵活:http://objectlistview.sourceforge.net/python/