[python] WxPython - ListCtrl

Petr Prikryl PrikrylP na skil.cz
Pondělí Březen 5 07:52:19 CET 2007


> Leos Pol
> Jakub Vojáček wrote:
> > for i in range(len(seznam)):
> >     listbox.InsertStringItem(0,seznam[i])
> >     listbox.SetStringItem(i,1,str(pocet[i]))
> >
> for i in range(len(seznam)):
>     newItem = listbox.InsertStringItem(0,seznam[i])
>     listbox.SetStringItem(newItem,1,str(pocet[i]))

for i, prvek in enumerate(seznam):
    newItem = listbox.InsertStringItem(0, prvek)
    listbox.SetStringItem(newItem, 1, str(pocet[i]))

pepr


Další informace o konferenci Python