使用 Python Tkinter 的可扩展列表

发布于 2024-11-06 08:04:59 字数 183 浏览 2 评论 0原文

我知道如何使用 Tkinter 创建列表框,但这只允许我显示单个项目的列表。我需要创建一个可扩展列表,允许用户沿着项目旁边的 + 行点击某些内容,这又会打开一个新列表,每个项目旁边都有 + 按钮,直到到达列表的叶子。我想知道是否有办法使用 Tkinter 实现这种类型的可扩展列表,或者如果没有,是否有不同的 Python GUI 工具可以做到这一点?

I know how to create a Listbox using Tkinter but this only allows me to display a list of single items. I need to create a expandable list that allows the user to hit something along the lines of a + next to the item which in turn opens up a new list with + buttons next to each item until you reach the leaf of a list. I was wondering if there was a way to implement this type of expandable list using Tkinter or if not if there was a different Python GUI tool that could do so?

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

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

发布评论

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

评论(1

空袭的梦i 2024-11-13 08:04:59

您正在寻找的小部件通常称为“树”或“层次树”。

如果您使用的是 python2.7 或更高版本,您可以使用 ttk.Treeview 小部件。

对于旧版本的 python,您可以使用 Tix.Tree。您还可以在 google 上搜索“tkinter tree”,您会发现其他几个变体,例如 这个

The widget you are looking for is commonly called a "tree" or "hierarchical tree".

If you're using python2.7 or greater you can use ttk.Treeview widget.

For older versions of python you can use Tix.Tree. You can also search for "tkinter tree" on google and you'll find several other variations such as this one.

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