How can I check if a certain root in a wx.TreeCtrl object has a certain child or not?
I am writing manual functions to update TreeCtrl every time a child is added by user.Is there a way to automate this?
|
|
|
You might want to consider storing the data in some other easily-searchable structure, and using the
Uncommenting the commented lines will make it a recursive search. |
|||
|
|
|
A nicer way to handle recursive tree traversal is to wrap it in a generator object, which you can then re-use to perform any operation you like on your tree nodes:
|
|||
|
|