2005年12月12日 星期一 10:47
各位大侠: 今日,想使用wx.ListCtrl控件,但是却不知道如何向控件中添加记录,我找了一些资料,但是还是不是很明白,希望可以得到你们的帮助! -- Love Python!_______________________________________________ Python中文技术讨论邮件列表 发言: 发邮件到 python-chinese at lists.python.cn 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn 详细说明: http://python.cn/mailman/listinfo/python-chinese -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051212/f7ad50a9/attachment.htm
2005年12月12日 星期一 10:59
在 05-12-12,Lea.Cen<leacen at gmail.com> 写道: > 各位大侠: > > > 今日,想使用wx.ListCtrl控件,但是却不知道如何向控件中添加记录,我找了一些资料,但是还是不是很明白,希望可以得到你们的帮助! 去看 wx 的 demo。 -- I like python! My Blog: http://www.donews.net/limodou NewEdit Maillist: http://groups.google.com/group/NewEdit
2005年12月12日 星期一 11:02
我看了他的demo,但是还是没有看出来添加记录的方法啊!反正就是模模糊糊的,我已经研究很久,可就是不行,所以才在这求救的! On 12/12/05, limodou <limodou at gmail.com> wrote: > > 在 05-12-12,Lea.Cen<leacen at gmail.com> 写道: > > 各位大侠: > > > > > > 今日,想使用wx.ListCtrl控件,但是却不知道如何向控件中添加记录,我找了一些资料,但是还是不是很明白,希望可以得到你们的帮助! > > 去看 wx 的 demo。 > > -- > I like python! > My Blog: http://www.donews.net/limodou > NewEdit Maillist: http://groups.google.com/group/NewEdit > > _______________________________________________ > python-chinese > Post: send python-chinese at lists.python.cn > Subscribe: send subscribe to python-chinese-request at lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request at lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > > -- Love Python!_______________________________________________ Python中文技术讨论邮件列表 发言: 发邮件到 python-chinese at lists.python.cn 订阅: 发送 subscribe 到 python-chinese-request at lists.python.cn 退订: 发送 unsubscribe 到 python-chinese-request at lists.python.cn 详细说明: http://python.cn/mailman/listinfo/python-chinese My webSite: http://www.scweb.cn -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20051212/24fd8f0d/attachment.html
2005年12月12日 星期一 12:26
在 05-12-12,Lea.Cen<leacen at gmail.com> 写道: > 我看了他的demo,但是还是没有看出来添加记录的方法啊!反正就是模模糊糊的,我已经研究很久,可就是不行,所以才在这求救的! > index = self.InsertStringItem(sys.maxint, i) for i, t in enumerate(v[1:]): self.SetStringItem(index, i+1, t) 这是一个代码片段,先使用 InsertStringItem 插入第一列,它返回 index,然后使用 SetStringItem添加同行的其它列。除了Insert还应该有Append什么的方法,看一看文档或例子就有了。 -- I like python! My Blog: http://www.donews.net/limodou NewEdit Maillist: http://groups.google.com/group/NewEdit
Zeuux © 2025
京ICP备05028076号