使用wxListbox设置当前所选项目的字符串
我有一个列表框,
如何将列表框当前所选项目的字符串更改为另一个字符串?
我真的无法在谷歌上找到如何做到这一点。
I have a listbox,
How can I change the string of current selected item of the listbox to another string?
I cant really find how to do this on Google.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需删除选定的字符串并插入一个新字符串,就像本示例中针对单选列表框所做的那样:
如果您需要多选列表框,那么您应该使用
style=wx.LB_MULTIPLE
创建它:现在您可以一次更改多个字符串:
Just delete selected string and insert a new one, like it is done in this example for a single-choice listbox:
If you need multiple-selection listbox, then you should create it with
style=wx.LB_MULTIPLE
:Now you're able to change multiple strings at once: