从另一个函数引用ttk.Treeview列

时间:2018-12-03 09:49:35

标签: python tkinter ttk

我正在尝试使用以下代码订购ttk.Treeview:

for col in columns:
    AttendanceView.heading(col, text=col, command=lambda _col=("patrol"): \
        ttk.treeview_sort_column(AttendanceView, _col, False))

我的问题是我无法在for循环中引用这些列,因为这些代码行在与Treeview定义位置不同的函数中。树视图称为AttendanceView

我尝试过:

for col in AttendanceView.columns:
for col in treeview.columns:
columns= AttendanceView.get_columns()

0 个答案:

没有答案