更新 wxpython 中的列表框?

发布于 2024-12-13 22:13:14 字数 139 浏览 0 评论 0原文

我在更新列表框时遇到一些麻烦,我尝试过刷新和更新,但返回了错误。

列表框使用列表来获取其信息。它将显示列表中的初始项目。

但是,当我更新列表(程序运行时)时,它不会实时显示更改。

如果您难以理解我的意思,请发表评论。

I am having some trouble, updating a listbox, Ive tried Refresh and Update but those returned errors.

The listbox uses a list to get its information. It will show the initial items in the list.

However when i update the list (while the program is running), it will not show the changes live.

If you have difficulty understanding what I mean, please comment.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你曾走过我的故事 2024-12-20 22:13:15

使用方法Set()

self.mylistbox.Set(listofchoices)

将列表框重置为选项中给定的列表,即当前的列表
元素将从列表中删除并替换为新列表。

Use the method Set():

self.mylistbox.Set(listofchoices)

Resets the list box to the list given in choices—that is, the current
elements are removed from the list and replaced by the new list.

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