将小部件(Label)插入Tkinter中的Listbox

时间:2016-06-16 17:03:30

标签: python tkinter

嗨,人们是否有可能将标签小部件插入到tkinter中的Listbox而不是某些str值并附加到滚动条?

2 个答案:

答案 0 :(得分:1)

基于在线文档,否

  

列表框只能包含文本项...

有关ListBox的更多详细信息:http://effbot.org/tkinterbook/listbox.htm

答案 1 :(得分:0)

因为我真的还不了解它,所以不要求我解释它,但这应该可行:

import tkinter as tk # python3
root = tk.Tk()
myList = tk.Listbox(root)
myText = "A list item"
myList.insert(tk.END, myText)
myList.pack()
lbl = tk.Label(myList, text=myText, anchor="w", font=("Helvetica", "24"))
lbl.pack(side="top", fill="x", anchor="w")
root.mainloop()