如何从wxpython ListBox获取项目列表
是否有一个方法可以返回 wxPython listBox 中包含的项目列表?
我似乎无法在文档或任何与此相关的任何地方找到任何内容。我能想到的就是将选择设置为所有项目,然后获取所选项目,尽管这似乎是一种丑陋的迂回方式来做一些应该很简单的事情。
更新:
正如杰里米所指出的,执行此操作的方法是使用 GetStrings()
例如
listBoxList = yourListBox.GetStrings()
Is there a single method that returns the list of items contained in a wxPython listBox?
I cant seem to find anything anywhere in the documentation or anywhere for that matter. All that I can think to do is to set the selection to all of the items and then get the selected items, though seems like an ugly roundabout way of doing something that should be simple.
Update:
As pointed out by jeremy the way to do this is with GetStrings()
e.g.
listBoxList = yourListBox.GetStrings()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
wx.ListBox
派生自wx.ControlWithitems
。我认为 GetStrings() 是您所需要的。wx.ListBox
is derived fromwx.ControlWithitems
. I think GetStrings() is what you need.您可以获取列表框中的字符串列表,如下所示:
You can get a list of the strings in the listbox like: