先决条件:wxPython
在本文中,我们将学习wxPython的wx.TreeCtrl类中的GetFirstChild()方法。 GetFirstChild()方法返回第一个孩子;调用GetNextChild作为下一个孩子。
此函数需要将‘cookie’参数传递给它,该参数对于应用程序是不透明的,但对于使这些函数同时在一个和同一对象上枚举的库而言是必需的。传递给GetFirstChild和GetNextChild的cookie应该是相同的变量。
如果没有其他子项,则GetFirstChild()方法返回无效的树项(即wx.TreeItemId.IsOk返回False)。
Syntax:
wx.TreeCtrl.GetFirstChild(self, item)
Parameters:
Parameters Type Description item wx.TreeItemId item that we want to ensure to be visible.
例:
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()
输出:
(<wx._controls.TreeItemId; proxy of <Swig Object of type ‘wxTreeItemId *’ at 0x556c60f40440> >, <Swig Object of type ‘void *’ at 0x1>)
相关用法
- wxPython wx.ToolBar AddControl()用法及代码示例
- wxPython wx.ToolBar AddSeparator()用法及代码示例
- wxPython wx.RadioButton GetValue()用法及代码示例
- wxPython wx.RadioButton SetValue()用法及代码示例
- wxPython wx.RadioBOx IsItemShown()用法及代码示例
- wxPython wx.RadioBOx SetItemHelpText()用法及代码示例
- wxPython wx.RadioBox SetItemLabel()用法及代码示例
- wxPython wx.RadioBox GetItemToolTip()用法及代码示例
- wxPython wx.RadioBox GetString()用法及代码示例
- wxPython wx.RadioBox IsItemEnabled()用法及代码示例
- wxPython wx.RadioBox SetItemToolTip()用法及代码示例
- wxPython wx.RadioBox SetSelection()用法及代码示例
- wxPython wx.RadioBox SetString()用法及代码示例
- wxPython wx.RadioBox ShowItem()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 wxPython – GetFirstChild() method in wx.TreeCtrl。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。