在TreeListCtrl中自动调整列大小

时间:2010-12-14 08:03:24

标签: python wxpython

我创建了一个树控件:

self.tree_cat = wx.gizmos.TreeListCtrl(self, -1, style=some-styles)

然后我添加列:

self.tree_cat.AddColumn("blah")
self.tree_cat.AddColumn("blah")

现在,当我添加元素时,如何使列自动调整大小?

1 个答案:

答案 0 :(得分:0)

能够执行此操作的方式是使用wx.lib.mixins.listctrl.ListCtrlAutoWidthMixin作为wx.TreeListCtrl的mixin类。

但显然目前有一个bug