def __init__(self, parent):
Frame.__init__(self, parent)
self.parent = parent
self.config(width=200)
self.collections = []
self.collection_list = Treeview(self, selectmode="browse")
self.collection_list.heading("#0", text="Texture Collections")
self.collection_list.bind("<<TreeviewSelect>>", self.on_select)
self.collection_list.pack(fill=Y, expand=1)
评论列表
文章目录