我正在尝试使用以下代码订购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()