📌  相关文章
📜  wxPython – wx.TreeCtrl 中的 GetFirstChild() 方法

📅  最后修改于: 2022-05-13 01:55:11.552000             🧑  作者: Mango

wxPython – wx.TreeCtrl 中的 GetFirstChild() 方法

先决条件:wxPython

在本文中,我们将学习 wxPython 的 wx.TreeCtrl 类中的 GetFirstChild() 方法。 GetFirstChild() 方法返回第一个孩子;为下一个孩子调用 GetNextChild。

此函数需要向其传递一个“cookie”参数,这对应用程序来说是不透明的,但对于库使这些函数同时枚举同一个对象是必需的。传递给 GetFirstChild 和 GetNextChild 的 cookie 应该是同一个变量。

如果没有其他子项,GetFirstChild() 方法将返回一个无效的树项(即 wx.TreeItemId.IsOk 返回 False)。

例子:

Python
import wx
  
  
class MyTree(wx.TreeCtrl):
  
    def __init__(self, parent, id, pos, size, style):
        wx.TreeCtrl.__init__(self, parent, id, pos, size, style)
  
  
class TreePanel(wx.Panel):
  
    def __init__(self, parent):
        wx.Panel.__init__(self, parent)
        # create tree control in window
        self.tree = MyTree(self, wx.ID_ANY, wx.DefaultPosition, wx.DefaultSize,
                           wx.TR_HAS_BUTTONS)
        # CREATE TREE ROOT
        self.root = self.tree.AddRoot('root')
        self.tree.SetPyData(self.root, ('key', 'value'))
  
        # add item to root
        item = self.tree.AppendItem(self.root, "Item")
        item2 = self.tree.AppendItem(self.root, "Item")
  
        L = self.tree.GetFirstChild(self.root)
  
        # print tuple of PySwigObject returned from GetFirstChild function
        print(L)
  
        # expand all nodes of the tree
        self.tree.ExpandAllChildren(item)
  
        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(self.tree, 100, wx.EXPAND)
        self.SetSizer(sizer)
  
  
class MainFrame(wx.Frame):
  
    def __init__(self):
        wx.Frame.__init__(self, parent=None, title='TreeCtrl Demo')
        panel = TreePanel(self)
        self.Show()
  
  
if __name__ == '__main__':
    app = wx.App(redirect=False)
    frame = MainFrame()
    app.MainLoop()


输出: