Deberías de postear el código que tienes para saber con exactitud que es lo quieres, bueno dejo un codigo de ejemplo sacado de
aquí pero con algunas modificaciones.
Código Python:
Ver originalimport wx
class MyApp(wx.App):
def OnInit(self):
frame = wx.Frame(None, -1, "Hello from wxPython")
id = wx.NewId()
self.list = wx.ListCtrl(frame, id, style=wx.LC_REPORT | wx.SUNKEN_BORDER)
self.list.Show(True)
self.list.InsertColumn(0, "Data #1")
self.list.InsertColumn(1, "Data #2")
self.list.InsertColumn(2, "Data #3")
# 0 will insert at the start of the list
pos = self.list.InsertStringItem(0, "hello")
# add values in the other columns on the same row
self.list.SetStringItem(pos, 1, "world")
self.list.SetStringItem(pos, 2, "!")
pos = self.list.InsertStringItem(1, "hola")
self.list.SetStringItem(pos, 1, "mundo")
self.list.SetStringItem(pos, 2, "!")
print self.list.GetItem(0, 1).GetText()
print self.list.GetItem(1, 1).GetText()
frame.Show(True)
self.SetTopWindow(frame)
return True
app = MyApp(0)
app.MainLoop()