我正在使用 wxPython 制作一个 python 树可视化器。它会像这样使用:
show_tree([ 'A node with no children', ('A node with children', 'A child node', ('A child node with children', 'Another child')) ])
它工作得很好,但它显示了一个值为“Tree”的根。我这样做是为了它会创建多个根,但后来得知我不允许这样做。我恢复到原始代码,但使用将其从 this: 更改self.tree = wx.TreeCtrl(self)
为 this: self.tree = wx.TreeCtrl(self, style=wx.TR_HIDE_ROOT)
。它有效,但它没有显示侧面的小箭头,所以你不会知道哪些节点有孩子。有没有办法隐藏根节点但保留箭头。注意:我在使用 Python 2.5 版和 wxPython 2.8.4.0 版的 Mac 上。