如何从wxpython ListBox获取项目列表

发布于 2024-09-09 06:20:34 字数 293 浏览 3 评论 0原文

是否有一个方法可以返回 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葬﹪忆之殇 2024-09-16 06:20:34

wx.ListBox 派生自wx.ControlWithitems。我认为 GetStrings() 是您所需要的。

wx.ListBox is derived from wx.ControlWithitems. I think GetStrings() is what you need.

誰ツ都不明白 2024-09-16 06:20:34

您可以获取列表框中的字符串列表,如下所示:

[listBox.GetString(i) for i in range(listBox.GetCount())]

You can get a list of the strings in the listbox like:

[listBox.GetString(i) for i in range(listBox.GetCount())]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文