for col in self.columns: self.tree.heading(col, text=col,command=lambda _col=col: self.tree_sort_column1(self.tree, _col, False))
时间: 2023-03-08 15:05:31 浏览: 28
带Columns的Tree控件
这个代码做了什么?
这段代码遍历 self.columns 列表中的每一个元素,并对于每一列都调用 self.tree.heading 函数,将列的标题设置为 col,同时给每一列设置一个命令(即当列标题被点击时要调用的函数)。这个命令是调用 self.tree_sort_column1 函数,并将 self.tree、col 和 False 三个参数传入。
阅读全文