使用 Python Tkinter 的可扩展列表
我知道如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的小部件通常称为“树”或“层次树”。
如果您使用的是 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.