我用 Tkinter 为我的应用程序创建了一个 GUI。我也在使用树视图小部件。但是我无法更改其列宽和权重。如何正确地做到这一点?
样本:
tree = Treeview(frames[-1],selectmode="extended",columns=("A","B"))
tree.heading("#0", text="C/C++ compiler")
tree.column("#0",minwidth=0,width=100)
tree.heading("A", text="A")
tree.column("A",minwidth=0,width=200)
tree.heading("B", text="B")
tree.column("B",minwidth=0,width=300)
据我了解,它应该创建三个宽度为:100,200 和 300 的列。但是没有发生类似的情况。